:root{
    --cor_primaria: #00d9f8;
    --cor_secundaria: #1da3b8;
    --Backgroud: #dfdfdf;
    --CP_darkmode: #213872;
    --CS_darkmode: #0e2555;
    --BKG_darkmode: #303030;

    --Border_radius: 45px;
    --box-shadow: 7px 7px 9px 0px rgba(0, 0, 0, 0.3);
    --tamanho_fonte: 19px;
    --borda: 0.9px #1da3b8 solid;
    --borda-dk: 0.9px #213872 solid;
}

/*
===============================================================================================================
Formulário
===============================================================================================================
*/
form{
    width: 30%;
    display: block;
    margin: auto;
    margin-top: 70px;
    border: 1px var(--cor_primaria) solid;
    border-radius: 15px;
    text-align: center;
}

form h3{
    margin: 0;
    color: #303030;
    padding: 14px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    text-align: center;
    font-size: 37px;
}

/*
===============================================================================================================
Inputs 
===============================================================================================================
*/
.nome{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

#nome{
    width: 55%;
    height: 30px;
    border: 1px var(--cor_secundaria) solid;
    border-radius: 5px;
}

.email{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

#email{
    width: 55%;
    height: 30px;
    border: 1px var(--cor_secundaria) solid;
    border-radius: 5px;
    background-color: transparent;
}

.senha{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

#senha{
    width: 55%;
    height: 30px;
    border: 1px var(--cor_secundaria) solid;
    border-radius: 5px;
    background-color: transparent;
}

label{
    font-size: 22px;
    color: #3f3f3f;
}

.envi{
    margin-bottom: 10px;
}

#enviar{
    color: #3f3f3f;
    background-color: transparent;
    width: 22%;
    height: 40px;
    border: 1px var(--CP_darkmode) solid;
    border-radius: 5px;
    font-size: 20px;
}

#enviar:hover{
    background-color: var(--CP_darkmode);
    color: white;
    transition: 0.3s;
}

.cadastre{
    color: var(--cor_primaria);
    text-decoration: none;
    overflow: hidden;
}

/*
===============================================================================================================
Modo Noturno
===============================================================================================================
*/
body.darkmode form{
    border-color: var(--CP_darkmode);
}
body.darkmode label{
    color: white;
}
body.darkmode #email, body.darkmode #senha{
    border-color: var(--CP_darkmode);
}
body.darkmode #enviar{
    border: 1px var(--cor_primaria) solid;
    color: white;
}
body.darkmode #enviar:hover{
    background-color: var(--cor_primaria);
}

/*
===============================================================================================================
Responsividade
===============================================================================================================
*/
@media (max-width: 1025px){
    form{
        width: 40%;
    }
}

@media (max-width: 770px){
    form{
        width: 44%;
    }
    #email, #senha{
        width: 65%;
    }
}

@media (max-width: 481px){
    form{
        width: 70%;
    }
    #email, #senha{
        width: 68%;
    }
}

@media(max-width: 420px){
    form{
        width: 90%;
    }
}

@media (max-width: 321px){
    form{
        width: 92%;
    }
    #senha, #email{
        width: 75%;
    }
    #enviar{
        width: 30%;
    }
    #cades{
        font-size: 14px;
    }
}