﻿html, body {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

.login-container {
    height: 100vh;
}

.left-side {
    background: url('/images/login_wallpaper.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.left-content {
    position: relative;
    z-index: 2;
}

.right-side {
    background-color: #afc1d0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-box {
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.btn-login {
    background-color: #091b2b;
    border: none;
    color: white;
    width: 100%;
}

    .btn-login:hover {
        background-color: #122f4b;
        color: white;
    }

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
}

#Login, #Password {
    text-align: center;
}

.btn-login {
    background-color: #1b3f5f;
    border-color: #1b3f5f;
    color: white;
    width: 100%;
}

    .btn-login:hover {
        background-color: #ff8674;
        border-color: #ff8674;
        color: white;
    }
