/* Non-authenticated page layout (login, forgot/reset password) */

body {
    background: #f1f5f9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08);
    padding: 40px 40px 36px;
}

.login-logo {
    height: 36px;
    display: block;
    margin: 0 auto 24px;
}

.login-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 28px;
}

/* Primary action button */
.auth-btn {
    background-color: #2e3a6c;
    border-color: #2e3a6c;
    font-weight: 500;
    height: 46px;
    font-size: 15px;
}
.auth-btn:hover,
.auth-btn:focus { background-color: #24305a; border-color: #24305a; }

/* Language selector */
.lang-toggle { text-align: right; margin-bottom: 16px; }
.lang-select {
    border: 1px solid #e6e8eb;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.8rem;
    color: #6b7280;
    cursor: pointer;
    background: #fff;
}
.lang-select:focus { outline: none; border-color: #2e3a6c; }

/* Back-to-login link */
.back-link { text-align: center; margin-top: 20px; }
.back-link a { color: #6b7280; font-size: 0.875rem; text-decoration: none; }
.back-link a:hover { color: #2e3a6c; }
