*{
    margin: 0;
    font-family: 'Poppins', sans-serif;

}

html, body {
    height: 95%;}
 
body{
    background-color:#f5f5f5 ;
    padding: 40px;
}

.principal{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%
}

.cuadro1{
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    padding: 2%;
    gap: 5%;
    box-shadow: 0px 0px 10px rgb(0, 0 ,0 ,0.5);
    padding-bottom: 5%;
}


.cuadro2{
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    padding: 2%;
    box-shadow: 0px 0px 10px rgb(0, 0 ,0 ,0.5);
    color: rgb(90, 90, 90);
   

}


.cuadro1 h1 {
    color: #27A9E1;
    margin-bottom: 10px;
    justify-content: space-between;
}

.cuadro2 h1 {
    color: #27A9E1;
    margin-bottom: 30px;
}

.cuadritos{
    border-left: 5px solid #27A9E1;
    background-color:#f5f5f5 ;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 7px;
    box-shadow: 0px 0px 5px rgb(0, 0 ,0 ,0.3);
    flex: 1;
    display: flex;
    flex-direction: column;

}

.cuadritos h4 {
    color: rgb(53, 53, 53);
    margin-bottom: 10px;
    margin-left: 13px;

}

.cuadritos p {
    color: rgb(90, 90, 90);
    margin-bottom: 10px;
    margin-left: 13px;


}

.Flex {
    display: flex;
    flex-direction: row;
}

form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

form label {
    margin-top: 25px;
    margin-bottom: 15px;
}

form input {
    height: 40px;
    border: 1px solid #8f8f8f;
    border-radius: 5px;
    padding: 0 10px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
}

form input[type="radio"] {
    height: auto;
    box-shadow: none;
    margin-top: 10px;

}

#Online {
    margin-left: 30px;
    margin-top: 10px;
}

form select {
    height: 50px;
    border: 1px solid #8f8f8f;
    border-radius: 5px;
    color: rgb(90, 90, 90);
    padding: 10px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
}

form textarea {
    margin-bottom: 20px;
    height: 100px;
    border: 1px solid #8f8f8f;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
    resize: vertical;
}

#boton:hover{
    transform: scale(1.08);
}

#boton {
    height: 40px;
    transition: 1s;
    background-color: #27A9E1;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}