﻿.login-left {
    width: 340px;
    flex-shrink: 0;
    background: #1c1c2e;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2rem;
}

.login-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.login-brand-sub {
    font-size: .7rem;
    color: #555;
    letter-spacing: 2px;
    margin-top: 2px;
}

.login-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    opacity: .85;
}

.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
}

.login-header {
    margin-bottom: 2rem;
}

.login-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: .5px;
}

.login-sub {
    font-size: .75rem;
    color: #9ca3af;
    margin-top: 4px;
}

.login-field {
    margin-bottom: 1.25rem;
}

.login-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .3rem;
}

.login-forgot {
    font-size: .68rem;
    color: #6b7280;
    text-decoration: none;
    transition: color .15s;
}

    .login-forgot:hover {
        color: #1c1c2e;
    }

.login-password-wrap {
    position: relative;
}

    .login-password-wrap .gs-input {
        padding-right: 2.5rem;
    }

.login-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: color .15s;
}

    .login-eye:hover {
        color: #374151;
    }

.login-btn {
    width: 100%;
    background: #1c1c2e;
    color: #fff;
    border: none;
    padding: .7rem;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .15s;
    margin-top: .5rem;
}

    .login-btn:hover {
        background: #111;
    }

.login-error-summary {
    font-size: .75rem;
    color: #ef4444;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: .6rem .75rem;
    margin-bottom: 1rem;
    display: none;
}

    .login-error-summary:not(:empty) {
        display: block;
    }

.login-register-link {
    text-align: center;
    font-size: .72rem;
    color: #6b7280;
    margin-top: 1.25rem;
}

    .login-register-link a {
        color: #1c1c2e;
        font-weight: 700;
        text-decoration: none;
    }

        .login-register-link a:hover {
            text-decoration: underline;
        }

@media (max-width: 767px) {
    .login-left {
        display: none;
    }
}
