/* estilo de botones */
/* From uiverse.io by @meermubashar */
button {
    width: 10vw;
    height: 2.5vw;
    font-size: 1em;
    cursor: pointer;
    border: none;
    outline: none;
    color: 	#D2B48C;
    margin-top: 1.2vh;
    margin-bottom: 1vh;
    
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
   }
   
   button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: 	#D2B48C;
    z-index: -1;
    transition: all 0.5s;
   }
   
   button:hover::before {
    width: 100%;
   }
   
   button:hover {
    color: #755238;
   }
   
   button:active:before {
    background: 	#D2B48C;
   }

   .ingresar{
    background-color: transparent;
   }

   .volver{
       background-color: transparent;
   }