*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}


.contenedor{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right bottom, #2296c3, #2295c3a6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form{
    width: 380px;
    height: auto;
    background-color: white;
    border-radius: 25px;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.322);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.226);
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.192);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* padding: 20px 0px 20px 40px; */
}
.form img{
    margin-bottom: 20px;
    margin-top: 20px;
}
.datos{
    width: 80%;
    height: 30px;
    margin: 20px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.39);
    

}

.datos input {
    width: 100%;
    height: 100%;
    border: 0px;
    outline: none;
}
.checkterminos{
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 10px;
}
.boton{
    background-color: #2296c3;
    border: 0px;
    color: white;
    font-weight: bold;
    width: 40%;
    height: 40px;
    border-radius: 5px;
    margin-bottom: 15px;

}

@media (max-width: 400px) {
    .form{
        width: 85% ;
    }
    .form img {
        width: 100%;
    }
    .datos{
        width: 90%;
    }
    .checkterminos{
        font-size: 12px;
    }
  }