/*ESTILOS CSS DE CONTACTO*/
.contenedorformulario{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
}
.titulocontactanos{
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 45px;
    text-align: center;
}
.subtitulocontactanos{
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 20px;
    text-align: center;
}
.tituloformulario{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 25px;
}
.tituloFAQ{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 25px;
    text-align: center;
}
.contenidoFAQ{
    margin: 60px auto;
    width: 100%;
    max-width: 750px;
}
.contenidopregunta p{
    font-size: 20px;
}
.abrircerrarpregunta{
    display: none;
}
.contenidoFAQ li{
    list-style: none;
    width: 100%;
    padding: 5px;
}
.contenidoFAQ li label{
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 1.2;
    padding: 20px;
    margin-bottom: 2px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    background-color: rgb(25, 25, 25);
    color: whitesmoke;
}
.FAQLabel::after{
    content: "+";
    position: absolute;
    font-size: 32px;
    right: 20px;
    transition: transform 0.5s;
}
 .contenidoFAQ .contenidopregunta{
    background-color: #fff;
    text-align: center;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
    transition:  padding 0.5s;
    line-height: 1.2;
}
.abrircerrarpregunta:checked ~ .contenidopregunta{
    max-height: 600px;
    padding: 30px 20px;
}
.abrircerrarpregunta:checked ~ ::after{
    transform: rotate(135deg);
}
.remarcarpalabraFAQ{
    font-weight: bold;
}
.enlaceFAQ{
    color: rgb(255, 143, 0);
}
.cajaformulario{
    margin: auto;
}
.cajaformulario > label,input,select,textarea{
    display: block;
    text-align: center;
    margin: auto;
    border: 0px;
}
label{
    text-transform: uppercase;
    padding-bottom: 5px;
    padding-top: 5px;
}
select{
    margin-bottom: 20px;
}
input,select{
    height: 30px;
    width: 100%;
}
textarea{
    height: fit-content;
    width: 100%;
}
#btn_enviar{
    margin-top: 20px;
    background-color: rgb(25, 25, 25);
    color: white;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 20px;
}
#btn_enviar:hover{
    background-color: rgb(255, 143, 0);
    color: white;
    border-radius: 2px;
}
.asterisco::after{
    content: "*";
    color: #bb2929;
    display: inline;
    margin-left: 3px;
    font-size: 20px;
}
.input_incorrecto{
    color: #bb2929;
    border: 3px solid red;
    border-radius: 2px;
}
.input_correcto{
    color: #1ed12d;
    border: 3px solid #1ed12d;
    border-radius: 2px;
}
#errornombre,#errorapellido1,#errorapellido2,#errornombregrupo,#erroremail,#errornickname,#errordiscord,#errortelefono{
    display: none;
    color: #bb2929;
}
textarea:focus, input:focus, input[type]:focus {
    border-color: none;
    box-shadow: none;
    outline: 0 none;
}
#terminos{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.8em;
}
.textoterminosycondiciones{
    text-align: center;
}
.enlaceterminosycondiciones{
    text-align: center;
    color: rgb(255, 143, 0);
    text-decoration: none;
}
/* Alerta */
.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    display: none;
  }
.fa-exclamation-triangle{
    margin-right: 5px;
    font-size: 17px
}
.alert > p{
    font-size: 17px;
}
/*MEDIA QUERIES*/
@media(max-width:992px){
    .titulocontactanos{
        font-size: 30px;
    }
    .subtitulocontactanos{
        font-size: 15px;
    }
    .tituloformulario{
        font-size: 20px;
    }
    .tituloFAQ{
        font-size: 20px;
    }
    .contenidoFAQ li label{
        font-size: 15px;
    }
    .contenidopregunta p{
    font-size: 15px;
    }
    .fa-exclamation-triangle{
        font-size: 14px;
    }
    .alert>p{
        font-size: 14px;
    }
}