/*---------------------------------------------------------------*/
body{
    color: white;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: black;
    background-image: linear-gradient(to right, #010201a4, rgba(0, 0, 0)), url(../../img/imagenes_de_fondo/fondo0.jpg);
}

@media (max-width: 900px){
    body{
        color: white;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: black;
        background-image: linear-gradient(to right, #010201a4, rgba(0, 0, 0)), url(../../img/imagenes_de_fondo/fondo0.jpg);
    }
}
/* --------------------------------------------------------------- */
.titulo{
    font-size: 2rem;
    text-align: center;
}
/* --------------------------------------------------------------- */
.texto{
    font-size: 1.2rem;
}
/* --------------------------------------------------------------- */
.formulario{
    background-image: linear-gradient(to bottom, rgba(1, 112, 145, 0.212), #35524538);
    padding: 20px;
    width: 300px;
    margin: 0 auto;
    border-radius: 10px;
    color: white;
    font-size: 2rem;
    transition-duration: 0.4s;
    box-shadow: 0.3s ease-in-out;
}

@keyframes parpadeo{
    0%, 100%{
        box-shadow: 
        inset 0 -3em 3em #1874A6,
        0 0 0 2px rgb(255, 255, 255),
        0.3em 0.3em 1em #154360;
    }
    40%{
        box-shadow: 
        inset 0 -3em 3em rgba(40, 116, 166, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.3),
        0.3em 0.3em 1em rgba(21, 67, 96, 0.3);
    }
}

.formulario:hover{
    padding: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: parpadeo 3s infinite;
}
/* --------------------------------------------------------------- */
input{
    background-color: rgba(1, 92, 99, 0.479);
    width: 300px;
    height: 30px;
    border-radius: 10px;
    border: 2px solid #2874a600;
    color: white;
    transition-duration: 0.4s;
}

input:hover{
    padding: 10px;
}

input:focus{
    background-image: linear-gradient(to top, rgba(3, 112, 145, 0.212), #35524538);
    border: 2px solid #36aaf1;
}

input::placeholder{
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
}

input, textarea{
    font-size: 1.2rem;
}
/* --------------------------------------------------------------- */
.boton{
    background-color: rgba(3, 112, 145, 0.212);
    border: none;
    color: white;
    padding: 10px 22px;
    font-size: 15px;
    transition-duration: 0.4s;
    box-shadow: 0.3s ease-in-out;
    margin-top: 5px;
    width: 300px;
    clip-path: polygon(
    0% 100%, 85% 100%, 100% 50%, 100% 0%, 15% 0%, 0% 50%
  );
}

.boton:hover{
    padding: 20px;
    border: 2px solid white;
  backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
    inset 0 -1em 1em #2874A6,
    0 0 0 1px rgb(255, 255, 255),
    0.3em 0.3em 3em #154360;
}
/* --------------------------------------------------------------- */
.ubicar_texto{
    text-align: center;
}
/* --------------------------------------------------------------- */
a{
    text-decoration: none;
    color: white;
}