*{
   padding: 0;
   margin: 0;
   box-sizing: border-box;
}

body{
   background-image: linear-gradient(180deg, #ffffff 0%, #c7eef3 100%);}

.publica{
    box-shadow: 0 5px 7px rgba(0, 0, 0, .1);
    background-color: #c7eef3;
    height: auto;
    padding: 40px 0;
    width: 90%;
    transition: all 1s ease;
    margin: 0 auto;
    margin-top: 40px;   
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}




.container-form{
    
   border-radius: 20px;
   
   height: auto;
   width: 100%;
   transition: all 1s ease;
   padding-bottom: 40px;

}


 .form-information{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    text-align: center;
    background-color: #f8f8f8;
    border-bottom-left-radius: 20px ;
    border-bottom-right-radius: 20px;
    margin: 0 auto;
 }

 .form-information-childs{
      display: block;
      height: auto;
      width: 90%;
      margin: 20px 0;
      padding:  0 30px;
      border-radius: 20px;
      background-color: #eeeeee;
      box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.1),  /* Sombra suave */
            0 10px 20px rgba(0, 0, 0, 0.1), /* Sombra más profunda */
            0 15px 30px rgba(0, 0, 0, 0.05); /* Sombra adicional para mayor profundidad */
      margin: 30px auto; /* Centrar el div horizontalmente */
      transition: box-shadow 0.3s ease, transform 0.3s ease; /* Transiciones suaves */
 }
 
 .form-information-childs:hover{
   transform: translateY(-15px); /* Elevar el div al hacer hover */
   box-shadow: 
       0 10px 20px rgba(0, 0, 0, 0.2),  /* Aumentar la sombra */
       0 15px 30px rgba(0, 0, 0, 0.15), 
       0 20px 40px rgba(0, 0, 0, 0.1);  /* Más profundidad al hacer hover */
 }
 
 .form-information-childs h2{
    color: #333;
    font-size: 2rem;
 }

 .form-information-childs p{
    color: #555;
 }

 .form{
    margin: 30px 0 0 0;
 }

 .form label, select{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 0 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
 }

 .form label input, select{
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 10px;
    color: #333;
 }

 .form label i{
    color: #a7a7a7;
 }

 .form input[type="submit"]{
    background-color: #9191bd;
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    margin-top: 0px;
    margin-bottom: 20px;
 }

 .form input[type="submit"]:hover{
    background-color: #7a7a9a;
 }

 .form select{
    cursor: pointer;
 }


 .hide{
    position: absolute;
    transform: translateY(-500%);
 }


 @media screen and (max-width: 200px){
   *{
      display: none;
   }
 }

 









