/* ==========================================================
   QUESTÃO INÉDITA
   AUTH.CSS
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#0f766e;
    --primary-dark:#115e59;

    --background:#f8fafc;

    --white:#ffffff;

    --text:#111827;

    --text-light:#6b7280;

    --border:#e5e7eb;

    --shadow:0 25px 60px rgba(0,0,0,.10);

    --radius:20px;

}

body{

    font-family:Inter,Arial,sans-serif;

    background:linear-gradient(135deg,#f8fafc,#ecfeff);

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px;

}

.auth-page{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.auth-card{

    width:100%;

    max-width:500px;

    background:#fff;

    border-radius:24px;

    padding:50px;

    box-shadow:var(--shadow);

}

.logo{

    display:block;

    text-align:center;

    font-size:36px;

    font-weight:800;

    margin-bottom:15px;

    color:var(--text);

}

.logo span{

    color:var(--primary);

}

.auth-card h1{

    text-align:center;

    font-size:34px;

    margin-bottom:15px;

}

.auth-card p{

    text-align:center;

    color:var(--text-light);

    margin-bottom:35px;

    line-height:1.7;

}

.campo{

    margin-bottom:22px;

}

.campo label{

    display:block;

    margin-bottom:8px;

    font-weight:700;

    color:var(--text);

}

.campo input{

    width:100%;

    padding:16px;

    border:1px solid var(--border);

    border-radius:14px;

    font-size:16px;

    transition:.25s;

    outline:none;

}

.campo input:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(15,118,110,.12);

}

.btn-primary{

    width:100%;

    border:none;

    padding:17px;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}

.erro{

    background:#fee2e2;

    color:#b91c1c;

    border:1px solid #fecaca;

    padding:15px;

    border-radius:12px;

    margin-bottom:25px;

    text-align:center;

}

.rodape{

    text-align:center;

    margin-top:30px;

    color:var(--text-light);

}

.rodape a{

    color:var(--primary);

    text-decoration:none;

    font-weight:700;

}

.rodape a:hover{

    text-decoration:underline;

}

@media(max-width:600px){

    body{

        padding:20px;

    }

    .auth-card{

        padding:35px 25px;

    }

    .auth-card h1{

        font-size:28px;

    }

    .logo{

        font-size:30px;

    }

}
.sucesso{
    background:#ecfdf5;
    color:#166534;
    border:1px solid #bbf7d0;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
}
.auth-links{

    display:flex;

    justify-content:flex-end;

    margin-bottom:20px;

}

.auth-links a{

    color:#16a34a;

    font-size:14px;

    text-decoration:none;

    font-weight:500;

    transition:.2s;

}

.auth-links a:hover{

    text-decoration:underline;

}