*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:         #003366;
    --blue:         #0055b8;
    --blue-lt:      #EBF2FC;
    --blue-pale:    #F4F8FE;
    --orange:       #ff9e18;
    --orange-dk:    #d4820f;
    --orange-bg:    #FFF5E3;
    --white:        #ffffff;
    --page-bg:      #D8DADF;
    --gray-50:      #F5F6F8;
    --gray-100:     #E8EAEE;
    --gray-200:     #D4D7DF;
    --gray-300:     #B2B7C3;
    --gray-400:     #8C93A3;
    --gray-500:     #636B7A;
    --gray-600:     #444C5C;
    --gray-900:     #111827;
    --radius-sm:    6px;
    --radius-md:    10px;
    --radius-lg:    16px;
    --shadow-panel: 0 16px 48px rgba(0,30,100,.20), 0 4px 12px rgba(0,0,0,.10);
    --shadow-card:  0 2px 6px rgba(0,0,0,.07);
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--page-bg);
    color: var(--gray-900);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Form inputs ── */
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    height: 42px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0 13px;
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.form-group input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,85,184,.10);
}

/* ── Buttons ── */
.btn-primary {
    display: block;
    width: 100%;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    letter-spacing: .15px;
    transition: background .15s, box-shadow .15s;
    box-shadow: 0 3px 10px rgba(255,158,24,.30);
}
.btn-primary:hover { background: var(--orange-dk); }

.btn-callback {
    white-space: nowrap;
    padding: 6px 13px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', Arial, sans-serif;
    background: var(--white);
    cursor: pointer;
    transition: border-color .12s, color .12s;
}
.btn-callback:hover { border-color: var(--blue); color: var(--blue); }

/* ── Card (forgot-password / change-password pages) ── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-panel);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(0,50,140,.08);
}

.card-header {
    background: var(--navy);
    padding: 1.75rem 2.25rem;
    position: relative;
    overflow: hidden;
}
.card-header::after {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}

.card-logo { display: block; text-decoration: none; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.card-logo img { width: 120px; height: auto; display: block; }

.card-header h1 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}
.card-header p {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.55;
    position: relative;
    z-index: 1;
}
.card-body { padding: 1.75rem 2.25rem 2rem; }

/* ── Back link ── */
.back-link { text-align: center; font-size: 13px; color: var(--gray-400); }
.back-link a { color: var(--blue); text-decoration: none; font-weight: 500; }
.back-link a:hover { text-decoration: underline; }

/* ── Support strip ── */
.support-strip {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-card);
    padding: .8rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.support-info { font-size: 12px; color: var(--gray-500); line-height: 1.6; }
.support-info strong { display: block; font-size: 12px; font-weight: 600; color: var(--gray-600); }
.support-info a { color: var(--blue); text-decoration: none; }

/* ── Footer nav ── */
footer span { font-size: 11px; color: var(--gray-400); }
footer nav { display: flex; gap: 1.25rem; }
footer nav a { font-size: 11px; color: var(--gray-400); text-decoration: none; }
footer nav a:hover { color: var(--navy); }