/* Login Page */
.login-main {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    padding-top: 3rem;
    z-index: 10;
    width: 100%;
}

.login-card {
    width: 100%;
    max-width: 540px;
    background-color: var(--surface-container-lowest);
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(33, 49, 86, 0.05);
    padding: 2rem;
    border: 1px solid var(--surface-container-high);
}

@media (min-width: 1024px) {
    .login-card { padding: 3rem; }
}

.brand-section {
    display: flex;
    flex-direction: column;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.brand-logo {
    max-width: 180px;
    height: auto;
}

.header-text {
    margin-bottom: 2rem;
    text-align: center;
}

.header-text p {
    color: var(--on-surface-variant);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
}

@media (min-width: 640px) {
    .form-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-custom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-input {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.375rem;
    border: 2px solid var(--outline-variant);
    transition: all 0.2s;
    cursor: pointer;
}

.checkbox-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkbox-check {
    position: absolute;
    color: white;
    font-size: 10px;
    opacity: 0;
    pointer-events: none;
}

.checkbox-input:checked + .checkbox-check {
    opacity: 1;
}

.forgot-password {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(0, 76, 239, 0.3);
}

.footer-section {
    width: 100%;
    padding: 2rem 0;
    text-align: center;
    color: rgba(33, 49, 86, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
