/* ==========================================================
   OxeClub - Oxe Que Doce
   style.css
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --amarelo:#FFD84D;
    --laranja:#FF9F1C;
    --rosa:#FF5FA2;
    --verde:#43C59E;

    --texto:#444444;
    --cinza:#F7F8FA;
    --branco:#FFFFFF;

}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:linear-gradient(180deg,#FFFDF7,#FFF7EC);

    color:var(--texto);

}

.container{

    width:92%;
    max-width:420px;

    margin:40px auto;

    background:var(--branco);

    border-radius:24px;

    padding:35px 25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.logo{

    display:block;

    width:180px;

    margin:0 auto 25px;

}

h1{

    text-align:center;

    font-size:30px;

    color:var(--laranja);

    margin-bottom:15px;

}

.texto{

    text-align:center;

    line-height:1.6;

    color:#666;

    margin-bottom:30px;

}

.campo{

    margin-bottom:18px;

}

/* Labels dos campos */

label:not(.check){

    display:block;

    font-weight:bold;

    margin-bottom:8px;

}

input[type="text"]{

    width:100%;

    height:52px;

    padding:0 16px;

    font-size:16px;

    border:2px solid #EFEFEF;

    border-radius:14px;

    background:#FFF;

    transition:.25s;

}

input[type="text"]:focus{

    outline:none;

    border-color:var(--laranja);

    box-shadow:0 0 0 4px rgba(255,159,28,.18);

}

/* ==========================================================
   ACEITE LGPD
========================================================== */

.aceite{

    margin:25px 0;

}

.check{

    display:flex;

    align-items:flex-start;

    gap:12px;

    cursor:pointer;

}

.check input{

    width:20px;

    height:20px;

    margin-top:3px;

    flex-shrink:0;

}

.check span{

    display:block;

    text-align:justify;

    font-size:14px;

    line-height:1.6;

    color:#666;

}

/* ==========================================================
   BOTÃO
========================================================== */

button{

    width:100%;

    height:56px;

    border:none;

    border-radius:14px;

    background:linear-gradient(90deg,var(--laranja),var(--rosa));

    color:#FFF;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.25s;

}

button:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 20px rgba(255,95,162,.25);

}

button:active{

    transform:scale(.98);

}

/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width:480px){

    .container{

        margin:20px auto;

        padding:25px 20px;

    }

    h1{

        font-size:26px;

    }

}