﻿#LoginView {
    width: 100%;
    height: 100%;
    display: flex;
    background: white;
}

.login-left {
    flex: 1;
    background-image: url(../../images/login-illustration.svg);
    background-size: cover;
    background-repeat: no-repeat; /* Don't repeat the image */
    background-position: center; /* Center the image */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .login-left::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 50px 50px;
    }

.illustration {
    position: relative;
    z-index: 1;
    object-fit: contain;
}

.login-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-container {
    padding: 0 100px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.logo-container {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    height: 40px;
    width: 240px;
    justify-content: center;
    align-self: center;
}

.login-button {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: #2B2F49;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}
    .login-button:hover {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        transform: translateY(-1px);
    }

    .login-button:active {
        transform: translateY(0);
    }

.login-subtitle {
    font-size: 14px;
    color: #6B6B74;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: white;
}

    .form-input:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-input::placeholder {
        color: #94a3b8;
    }

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .password-toggle:hover {
        color: #64748b;
    }

@media (max-width: 968px) {
    .login-left {
        display: none;
    }

    .login-container {
        padding: 0;
        width: 60%;
    }

    .login-right {
        padding: 40px 30px;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .login-title {
        display: flex;
        justify-content: center;
    }

    .login-subtitle {
        display: flex;
        justify-content: center;
    }
}