/* RESET BÁSICO */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

/* FUNDO GLOBAL DO SITE */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #062c26 0%, #020909 45%, #010404 100%);
    color: #d2f5ec;
    display: flex;
    flex-direction: column;
}

/* =========================
   HEADER – estilo ExitLag
   ========================= */
.site-header {
    height: 88px; /* mais alto */
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #020a09 0%, #020706 100%);
    border-bottom: 1px solid #06342E;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.site-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1.4px;
    color: #00e6a0;
    text-transform: uppercase;
}

.site-header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.site-header-nav a {
    color: #9fc5ba;
    text-decoration: none;
    transition: 0.2s;
    padding-bottom: 2px;
}

.site-header-nav a:hover {
    color: #00e6a0;
    border-bottom: 2px solid #00e6a0;
}

/* Botão do header (ex: Já tenho conta / Criar conta) */
.header-cta {
    padding: 10px 22px;
    border-radius: 999px;
    background: #00e6a0;
    color: #04221E;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
}

.header-cta:hover {
    background: #00c88c;
    transform: translateY(-1px);
}

/* =========================
   CONTEÚDO CENTRAL
   ========================= */
.site-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 40px 20px;
}

/* Wrapper dos formulários (login/register) */
.auth-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   FOOTER – estilo barra baixa
   ========================= */
.site-footer {
    height: 72px; /* mais alto */
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #020706 0%, #010404 100%);
    border-top: 1px solid #06342E;
    font-size: 13px;
    color: #7fa097;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.7);
}

.site-footer a {
    color: #00e6a0;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 900px) {
    .site-header,
    .site-footer {
        padding: 0 18px;
    }

    .site-header-nav {
        display: none; /* depois dá pra virar menu mobile */
    }

    .header-cta {
        padding: 8px 16px;
    }
}
