


body{
    font-family: "Poppins",sans-serif;
    height: 100vh;   
    margin: 0px;
    background: #000000
  
}

.container {
   

    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    justify-content: center;
    align-items: center;
    background: #efeeee;
    height: auto;
    width: 300px;
    border-radius: 25px;
    box-shadow: 10px 10px 16px -2px #0c0c0c, -10px -10px -16px -2px #fff;
    text-align: center;
    padding: 2em;
}

/* Estilos para dispositivos com largura menor ou igual a 600 pixels (modo paisagem) */
@media (max-width: 600px) {

    form {
        width: 75%; /* Reduzir a largura do formulário */
        justify-content: center;
        align-items: center;
        
    }
}

p{
    color: #191d2b;
    margin-bottom: 1em;
    font-size: 20px;
    font-weight: 600;
}

input{
    width: 280px;
    border: none;
    border-radius: 5000px;
    padding: 1em;
    background: #efeeee;
    box-shadow: inset 4px 4px 6px #191d2b, inset -4px -4px 6px #fff;
    margin-bottom: 2em;
    color: #191d2b;
    font-family: "Poppins", sans-serif;
    /* font-weight: 400;*/

}

input[type=submit]{
   
    width: 170px;    
    box-shadow: 4px 4px 4px #191d2b, -4px -4px 6px #ffffff;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;   
    cursor: pointer; 
   
}
button{ 
    padding: 1em;
    border-radius: 5000px;
    border: none;
    color: #191d2b;
    width: 170px;    
    box-shadow: 4px 4px 4px #191d2b, -4px -4px 6px #ffffff;
    margin-top: 0px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;   
    
} 



input :hover{
    cursor: pointer;
}
input:active{
    box-shadow: inset 4px 4px 6px #ccc, inset -4px -4px 6px #fff;
}

input:focus{
    outline: none;
}

::-moz-placeholder{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #aaa;
}

::placeholder{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #aaa;
}


a{
    text-decoration: none;
    color: #032ff5;
    font-size: 12px;
    transition: all 0.2s ease-in-out;

}

a:hover{
    color: #aaa;
}

a:active{
    color: #aaa;
}

a:focus{
    outline: none;
}

/* Estilos para a caixa de seleção */
input[type="checkbox"] {
    /* Tornar a caixa de seleção invisível */
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Estilizar a aparência da caixa de seleção */
.checkmark {
    position: relative; /* Alterado para relative */
    display: inline-block; /* Adicionado display inline-block */
    width: 15px;
    height: 15px;
    border: 2px solid #009933; /* Cor da borda da caixa de seleção */
    border-radius: 5px;
}

/* Estilos para quando a caixa de seleção estiver marcada */
input[type="checkbox"]:checked + .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    top: 0px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid #191d2b; /* Cor do "check" da caixa de seleção */
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Estilos para o texto ao lado da caixa de seleção */
.termos-text {

    margin-left: 10px; /* Ajuste a margem conforme necessário para o alinhamento */
    font-size: 13px; /* Ajuste o tamanho da fonte conforme necessário */
    color: #009933; /* Cor do texto ao lado da caixa de seleção */
}

li{
    list-style-type: none;
    font-size: 12px;
    text-align: left;
    
}

.container form label{
    color: red;
    font-size: 12px;
}