body{
    font-family: "Poppins", sans-serif;
    background-color: #F6F7F9;
    color: #4D4D4D;
}
.logo{
    width: 200px;
}

h1{
    font-size: 28pt;
}
.header{
    background-image: url(../img/Recurso-2.jpg);
    background-size:cover;
}
h2{
    font-size: 14pt;
    text-align: start;
}
.mt-4 {
    margin-top: 12px !important;
    margin-bottom: 0px;
}
.form{
    width: 100%;
    padding-left: 30%;
}
input{
    width: 500px;
    border-radius: 10px;
    height: 30px;
    background-color: #F6F7F9;
    outline: none;
    padding: 15px 15px 15px 15px;
    border: 1px solid #573CF9;
}
input[type="checkbox"]{
    width: 30px!important;
}
.form-check {
    display: flex;
    align-items: center; 
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
}
.btn-unete{
    background-color: #573CF9;
    font-size: 18pt;
    height: 44px;
    width: 210px;
    color:  #99FFF5;
    transition: transform 0.3s ease, box-shadow 0.2s ease;
    border-radius: 10px;
    cursor: pointer;
    border: none;
}
.btn-unete:hover{    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.02); 
}
.icon{
    width: 100px;
}
select{
    width: 500px;
    border-radius: 10px;
    height: 30px;
    background-color: #F6F7F9;
    outline: none;
    padding: 0px 15px 0px 15px;
    border: 1px solid #573CF9;
}
.boton-enviar{
    width: 130px;
    height: 50px;
    margin-top: 12px;
    background-color: #573CF9;
    color: white;
    border: none;
    font-size: 15pt;
    font-weight: 600;
    border-radius: 10px;

}
textarea{
    width: 500px;
    
    border: 1px solid #573CF9;
    border-radius: 10px;
}
input[type="file"]{
    border: none;
}
.btn-adjuntar{
    width: 100%;
}
#file-upload{
    width: auto;
    height: 100%;
    border: none;
    border-radius: 10px;
    display: none;
    cursor: pointer;
}
.next-icon{
    width: 80px;
}
.flecha-atras{
    width: 80px;
}
input[type="checkbox"] {
    display: none; 
}
input[type="checkbox"] + label {
    position: relative;
    padding-left: 25px; /* Espacio para el custom checkbox */
    cursor: pointer;
    user-select: none;
}

input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #808080; /* Color del borde del checkbox */
    border-radius: 3px;
    background-color: white; /* Color de fondo del checkbox */
}

input[type="checkbox"]:checked + label::before {
    background-color: #573CF9; /* Color de fondo del checkbox seleccionado */
    border-color: #573CF9; /* Color del borde del checkbox seleccionado */
}

input[type="checkbox"]:checked + label::after {
    content: "\2713"; /* Símbolo de checkmark */
    position: absolute;
    left: 4px;
    top: -1px;
    font-size: 15px;
    color: white; /* Color del checkmark */
}
.irvolver {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
/*Medida Celular*/
@media (max-width: 767.98px) { 
    .form{
        width: 100%;
        padding: 20px;
    }
    input{
        width: 100%;
    }
    textarea{
        margin-top: 5px;
        width: 100%;
        height: 150px;
    }
    .logo{
        margin-left: 70px;
    }
    .header{
        background-image: url(../img/Recurso-3.jpg);
        background-size:contain;
        height: 100px;
    }
    h1{
        font-size: 15pt;
    }
    #funcion{
        width: 100%;
    }
    #administracion{
        width: 100%;
    }
    #plataforma{
        width: 100%;
    }
    #usuario{
        width: 100%;
    }
    option{
        width: 100%;
    }
    #servicios{
        width: 100%;
    }
    .btn-adjuntar{
        width: 300px;
    }
    
    .next-icon{
       
    }
}