.form-wrapper{
    max-width:950px;
    margin:60px auto;
    padding:0 50px;
    margin-top: 120px !important;
}

.form-card{
    background:#f7f7fb;
    border:1px solid #dfe3ea;
    border-radius:28px;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
}

@media(min-width:768px){

    .form-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

.form-col-span-2{
    grid-column:span 1;
}

@media(min-width:768px){

    .form-col-span-2{
        grid-column:span 2;
    }

}

.form-group{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.form-label{
    font-size:15px;
    font-weight:600;
    color:#142952;
}

.form-label span{
    font-size:11px;
    color:#919aad;
}

.form-input,
.form-select{
    width:100%;
    height:58px;
    border:1px solid #dfe3ea;
    border-radius:18px;
    padding:0 18px;
    background:#fff;
    font-size:15px;
    color:#444;
    transition:.2s;
}

.form-input:focus,
.form-select:focus,
textarea:focus{
    outline:none;
    border-color:#f2c94c;
    box-shadow:0 0 0 3px rgba(242,201,76,.15);
}

textarea{
    width:100%;
    min-height:160px;
    border:1px solid #dfe3ea;
    border-radius:22px;
    padding:18px;
    resize:vertical;
    font-size:15px;
    background:#fff;
}

.multi-select-box{
    border:1px solid #dfe3ea;
    border-radius:18px;
    background:#fff;
    padding:18px;
    min-height:220px;
}

.form-checkbox-group{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.form-checkbox-group input{
    margin-top:4px;
}

.form-checkbox-group label{
    font-size:15px;
    color:#444;
    line-height:1.5;
}

.recaptcha-wrapper{
    display:flex;
    justify-content:flex-start;
}

.submit-row{
    display:flex;
    justify-content:center;
}

.form-submit{
    background:#f2c300;
    color:#000;
    border:none;
    border-radius:999px;
    padding:18px 50px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
    width: 400px;
}

.form-submit:hover{
    transform:translateY(-2px);
}

@media(max-width:767px){
    .form-card{
        padding:24px;
    }
    .submit-row{
        justify-content:center;
    }
    .form-submit{
        width:100%;
    }
}

.selection-box{
    border:1px solid #dfe3ea;
    border-radius:18px;
    background:#fff;
    padding:18px;
    min-height:260px;
    height: 100%;
}

.selection-title{
    font-size:16px;
    font-weight:600;
    color:#333;
    margin-bottom:18px;
    padding-bottom:12px;
    border-bottom:1px solid #ececec;
}

.selection-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.selection-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#444;
    cursor:pointer;
}

.selection-item input{
    width:16px;
    height:16px;
    accent-color:#f2c300;
    flex-shrink:0;
}

.empty-message{
    color:#999;
    font-size:13px;
    line-height:1.5;

}

.recaptcha-wrapper {
    width: 100%;
    display: flex;
    overflow: hidden;
    grid-column: 1 / -1;
}

/* Responsive fix */
.recaptcha-wrapper .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left;
}

#recaptcha-error {
    color:red; 
    display:none;
    margin-top: -20px; 
    font-size: 12px;
}

/* Ajuste extra para móviles pequeños */
@media (max-width: 400px) {
    .form-wrapper{
        padding:0 25px;
        margin-top: 150px !important;
    }
    /* .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.80);
    } */
    #recaptcha-error {
        margin-top: -20px;
        font-size: 10px;
    }
}