
/*
.btn {
    position: relative;
    padding: 1em 2em;
    outline: none;
    border: 1px solid #303030;
    background: #000000c9;
    color: #006eff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 17px;
    overflow: hidden;
    transition: 0.2s;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}
    
.btn:hover {
    box-shadow: 0 0 10px #0099ff, 0 0 25px #001eff, 0 0 50px #0026ff;
    transition-delay: 0.6s;
}
    
.btn span {
    position: absolute;
}
    
.btn span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0077ff);
}
    
.btn:hover span:nth-child(1) {
    left: 100%;
    transition: 0.7s;
}
    
.btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #001eff);
}
    
.btn:hover span:nth-child(3) {
    right: 100%;
    transition: 0.7s;
    transition-delay: 0.35s;
}
    
.btn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ae00ff);
}

.btn:hover span:nth-child(2) {
    top: 100%;
    transition: 0.7s;
    transition-delay: 0.17s;
}

.btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #001eff);
}

.btn:hover span:nth-child(4) {
    bottom: 100%;
    transition: 0.7s;
    transition-delay: 0.52s;
}

.btn:active {
    background: #ae00af;
    background: linear-gradient(to top right, #ae00af, #001eff);
    color: #bfbfbf;
    box-shadow: 0 0 8px #ae00ff, 0 0 8px #001eff, 0 0 8px #ae00ff;
    transition: 0.1s;
}

.btn:active span:nth-child(1) 
    span:nth-child(2) 
    span:nth-child(2) 
    span:nth-child(2) {
    transition: none;
    transition-delay: none;
}
/*
/*----------Estilo-1----------*/  
/*
.btn {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
}
       
.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #70c3dd;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}
       
.btn span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #234567;
}

.btn svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #234567;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.btn:hover:before {
    width: 100%;
    background: #70c3dd;
}

.btn:hover svg {
    transform: translateX(0);
}

.btn:active {
    transform: scale(0.95);
}   
*/
/* From uiverse.io by @e-coders */
.button {
    appearance: none;
    background-color: #e91d76;
    border: 0.125em solid #e91d76;
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: GothamBold;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    /*position:absolute;*/
    right: 0;
    min-height: 1em;
    min-width: 0;
    outline: none;
    padding: 0.5em 2em;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
    cursor: pointer;
   }
   
   .button:disabled {
    pointer-events: none;
   }
   
   .button:hover {
    color:  white;
    background-color:#e91d76 ;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
   }
   
   .button:active {
    box-shadow: none;
    transform: translateY(0);
   }
   

  
/*
@media (max-width: 750px) {
    
    
}

@media (max-width: 600px) {

    

}

@media screen and (max-width: 770px){
    

}

@media screen and (max-width: 600px){
    
}

@media(max-width: 450px){

}*/