/* boton importado */
/* From uiverse.io */
button {
    --color: #ba9df4;
    background-color: transparent ;
    font-family: inherit;
    display: inline-block;
    width: 100%;
    height: 1.3em;
    line-height: 1.3em;
/*     margin: 1vw;
 */    position: relative;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color .5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    border-radius: 30% 2px;

    font-weight: 500;
    color: var(--color);
   }
   
   button:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
   }
   
   button:hover {
    color: rgb(0, 0, 0);
   }
   
   button:before {
    top: 100%;
    left: 100%;
    transition: all .7s;
   }
   
   button:hover:before {
    top: -30px;
    left: -30px;
   }
   
   button:active:before {
    background: #d0bdf6;
    transition: background 0s;
   }
.acceder,.volver{
    padding-left: 1vw;
    padding-right: 4vw;
    width:20%;
    background-color:#ebf3a0
}
