/* ========================================
   Locro - Login Page Styles
   ======================================== */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 24px;
}

.login-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    height: 112px;
    width: auto;
    margin: 0 auto 48px;
    display: block;
}

.login-header p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

#login-form .form-group {
    margin-bottom: 16px;
}

#login-form input {
    height: 44px;
}

#login-btn {
    width: 100%;
    height: 44px;
    font-size: 1rem;
    margin-top: 8px;
}

.login-card .lang-switcher {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 8px;
}

/* Forgot password */
.forgot-link {
    text-align: center;
    margin-top: 16px;
}
.forgot-link a, .back-link {
    color: var(--color-primary);
    font-size: 0.9em;
    text-decoration: none;
}
.forgot-link a:hover, .back-link:hover {
    text-decoration: underline;
}
.back-link {
    display: inline-block;
    margin-top: 12px;
}
#forgot-step1 input,
#forgot-step2 input,
#forgot-step3 input {
    height: 44px;
}
#forgot-step1 .btn,
#forgot-step2 .btn,
#forgot-step3 .btn {
    width: 100%;
    height: 44px;
    font-size: 1rem;
}
#forgot-code {
    text-align: center;
    font-size: 1.5em;
    letter-spacing: 6px;
    font-weight: 600;
}
