@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
    --bg:          #0e0e0e;
    --s1:          #141414;
    --s2:          #1a1a1a;
    --border:      #2a2a2a;
    --text:        #f0ede8;
    --muted:       #7a766e;
    --accent:      #ff6b35;
    --accent-dim:  #7d2803;
    --accent-text: #f5a05a;
}

html, body {
    height: 100%;
}

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

/* ── Card ── */

.forgot-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

/* ── Logo ── */

.forgot-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 2rem;
    object-fit: contain;
}

/* ── Icon ── */

.forgot-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.forgot-icon svg {
    color: var(--accent-text);
}

/* ── Heading ── */

.forgot-container h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

/* ── Body text ── */

.forgot-container p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 320px;
    margin-bottom: 2rem;
}

/* ── Divider ── */

.forgot-divider {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

/* ── Buttons ── */

.shortBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s, background 0.2s, border-color 0.2s;
    margin-bottom: 0.6rem;
}

/* First button — primary */
.shortBtn:first-of-type {
    background: var(--accent);
    color: #0e0e0e;
    border: 1px solid transparent;
    font-weight: 500;
}

.shortBtn:first-of-type:hover {
    opacity: 0.85;
}

/* Second button — ghost */
.shortBtn:last-of-type {
    background: none;
    color: var(--muted);
    border: 1px solid var(--border);
}

.shortBtn:last-of-type:hover {
    border-color: #3a3a3a;
    color: var(--text);
}

/* ── Footer ── */

.forgot-container sup {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 2rem;
    letter-spacing: 0.01em;
    vertical-align: baseline;
}