/* Page-specific layout that sits on top of new.css. Keeps your Manrope,
   Primary (#009DDA), button styles, spacing, and responsive patterns. */

/* Layout */
#login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Header */
.login-header h1 {
    /* Match headings from base but keep primary accent via h2 in base.
     We’ll keep h1 neutral here per your palette. */
    margin: 0 0 6px 0;
}

.login-header p {
    margin: 0 0 20px 0;
    color: #545863;
}

/* Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
}

/* Extend base input styling to password as well */
input[type="password"],
input[type="email"],
input[type="text"] {
    border: 1px var(--Text, #545863) solid;
    padding: 12px;
    /* slightly taller for comfort */
    height: 48px;
    /* aligns with base select/input heights */
    border-radius: 6px;
    font-size: 14px;
    outline-offset: -1px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

input:focus {
    border-color: var(--Primary, #009DDA);
    box-shadow: 0 0 0 4px rgba(0, 157, 218, 0.12);
    outline: none;
}

/* Button (inherits .cta-button styles from new.css) */
.login-btn {
    width: 100%;
    margin-top: 8px;
}

/* Footnote */
.login-note {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 10px;
}

/* Responsive niceties consistent with your base breakpoints */
@media (max-width: 600px) {
    .login-card {
        padding: 20px;
        border-radius: 12px;
    }
}