/* =====================================================
   ESCOLA ANTÔNIO JOAQUIM LUSTOSA
   LOGIN ADMINISTRADOR
===================================================== */


/* ================= BODY ================= */

body{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    background:
        linear-gradient(
            135deg,
            #edf3f9 0%,
            #f7f9fc 100%
        );

}


/* ================= CONTAINER ================= */

.container{

    width:100%;
    max-width:470px;

    padding:25px;

}


/* ================= CABEÇALHO ================= */

header{

    background:#ffffff;

    border:1px solid var(--borda);

    border-radius:18px 18px 0 0;

    padding:34px;

    text-align:center;

    box-shadow:var(--sombra);

    position:relative;

    overflow:hidden;

}

header::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:
        linear-gradient(
            90deg,
            #0F4C81,
            #263746
        );

}

.logo{

    margin-bottom:18px;

}

.logo-escola-principal{

    background:#ffffff;

    padding:8px;

    border-radius:12px;

    border:1px solid #e2e8ef;

    box-shadow:
        0 8px 22px rgba(15,76,129,.10);

}

header h1{

    color:#0F4C81;

    font-size:30px;

    margin-bottom:8px;

}

header p{

    color:#6B7280;

    font-size:15px;

}


/* ================= FORMULÁRIO ================= */

.formulario{

    background:#ffffff;

    border:1px solid var(--borda);

    border-top:none;

    border-radius:0 0 18px 18px;

    padding:35px;

    box-shadow:var(--sombra);

}

.formulario h2{

    text-align:center;

    color:#1F2937;

    margin-bottom:30px;

}


/* ================= LABEL ================= */

label{

    display:block;

    margin-top:18px;

    margin-bottom:8px;

    font-weight:600;

    color:#374151;

}


/* ================= INPUT ================= */

input{

    width:100%;

    height:50px;

    padding:0 16px;

    border:1px solid #D6DEE7;

    border-radius:10px;

    font-size:15px;

    transition:.25s;

}

input:focus{

    border-color:#0F4C81;

    box-shadow:
        0 0 0 4px rgba(15,76,129,.10);

}


/* ================= BOTÃO ================= */

button{

    width:100%;

    height:50px;

    margin-top:28px;

    border:none;

    border-radius:10px;

    background:#263746;

    color:#ffffff;

    font-size:15px;

    font-weight:600;

    transition:.25s;

}

button:hover{

    background:#17232d;

    transform:translateY(-2px);

}

button i{

    margin-right:8px;

}


/* ================= MENSAGENS ================= */

#mensagem{

    margin-top:18px;

}

.erro{

    background:#FDECEC;

    color:#C62828;

    border-left:4px solid #E53935;

    padding:14px;

    border-radius:8px;

    font-size:14px;

}

.sucesso{

    background:#E8F5E9;

    color:#2E7D32;

    border-left:4px solid #43A047;

    padding:14px;

    border-radius:8px;

    font-size:14px;

}


/* ================= BOTÃO VOLTAR ================= */

.botao{

    width:100%;

    height:48px;

    margin-top:20px;

    border-radius:10px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    transition:.25s;

}

.botao.branco{

    background:#ffffff;

    color:#0F4C81;

    border:1px solid #CFD7DF;

}

.botao.branco:hover{

    background:#F4F7FA;

    border-color:#0F4C81;

}


/* ================= RESPONSIVO ================= */

@media(max-width:500px){

    .container{

        width:94%;

        padding:18px;

    }

    header{

        padding:26px;

    }

    .formulario{

        padding:25px;

    }

}