/* ============================================================
   GO2RUN — ESQUECI SENHA — NIGHT SPEED THEME
   ============================================================ */

:root {
    --bg-base:        #06070D;
    --bg-surface:     #0F1220;
    --fire:           #EE00EE;
    --fire-mid:       #BB00BB;
    --fire-glow:      rgba(238,0,238,0.25);
    --fire-subtle:    rgba(238,0,238,0.08);
    --fire-border:    rgba(238,0,238,0.35);
    --red:            #ef4444;
    --red-subtle:     rgba(239,68,68,0.1);
    --red-border:     rgba(239,68,68,0.4);
    --green:          #22c55e;
    --green-subtle:   rgba(34,197,94,0.1);
    --green-border:   rgba(34,197,94,0.4);
    --text-primary:   #EEF1FF;
    --text-secondary: #8A92B0;
    --border-mid:     rgba(255,255,255,0.12);
    --transition:     all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-base);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

/* ── CARD ── */
.card-reset {
    background: var(--bg-surface);
    border: 1px solid var(--border-mid);
    border-top: 2px solid var(--fire);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}
.card-reset .logo {
    height: 28px;
    margin-bottom: 1.5rem;
}
.card-reset h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.card-reset h2 i { color: var(--fire); }
.card-reset p.sub {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ── FORM ── */
.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-mid);
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-control::placeholder { color: var(--text-secondary); }
.form-control:focus {
    border-color: var(--fire);
    box-shadow: 0 0 0 3px var(--fire-subtle);
}

/* ── BUTTON ── */
.btn-primary-reset {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--fire);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}
.btn-primary-reset:hover {
    background: var(--fire-mid);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--fire-glow);
}

/* ── ALERTS ── */
.alert {
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    text-align: left;
    border: none;
}
.alert-success { background: var(--green-subtle); color: var(--green); border-left: 3px solid var(--green-border); }
.alert-danger  { background: var(--red-subtle);   color: var(--red);   border-left: 3px solid var(--red-border);   }

/* ── LINKS ── */
a { color: var(--fire); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--fire-mid); }
.mt-3 { margin-top: 0.9rem; }

/* ── BOOTSTRAP UTIL OVERRIDES ── */
.mb-3 { margin-bottom: 0.9rem; }
.text-start { text-align: left; }
.mt-2 { margin-top: 0.6rem; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    .card-reset { padding: 2rem 1.2rem; }
    .card-reset h2 { font-size: 1.3rem; }
}
