.form-container-sh {
    position: absolute;
    background: url("https://novafin.es/wp-content/uploads/2025/09/Form_wrapper.png")
        no-repeat center center;
    background-size: contain;
    /* width: 1100px;
    height: 720px;
    min-width: 1100px; */
    min-height: 720px;

    padding: 30px;
    box-sizing: border-box;

    color: #fff;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENEDOR DEL FORM */
.form-container-sh .form-style-sh {
    margin: 0;
    width: 504px;     
    max-width: none;  
}

/* GRUPOS */
.form-container-sh .form-group {
    margin-bottom: 20px;
}

/* LABELS */
.form-container-sh label {
    font-family: "Montserrat", system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
    color: #fff !important;
}

/* FILAS DOBLES */
.form-container-sh .form-row {
    display: flex;
    gap: 24px;
}

/* INPUTS Y SELECTS */
.form-container-sh .form-row .form-group input,
.form-container-sh .form-row .form-group select {
    width: 230px;
    height: 56px;
    padding: 12px 15px;
    border-radius: 25px;
    border: none;
    font-size: 15px;
    color: grey;
    box-sizing: border-box;
}

/* INPUT NOMBRE */
.form-container-sh #nombre {
    width: 300px;
    height: 56px;
    font-size: 15px;
    border-radius: 25px;
}

/* INPUTS GENERALES (SIN CONTRADICCIONES) */
.form-container-sh input[type="text"],
.form-container-sh input[type="email"],
.form-container-sh input[type="tel"],
.form-container-sh select {
    border-radius: 25px;
    border: none;
    color: grey;
}

/* CHECKBOX */
.form-container-sh input[type="checkbox"] {
    width: auto;
    margin-right: 6px;
}

/* INFO ICON */
.form-container-sh .info-icon {
    display: inline-block;
    cursor: pointer;
    color: #fff !important;
    font-weight: lighter;
    margin-top: 15px;
    font-size: 11px;
    font-family: "Montserrat", system-ui, -apple-system, sans-serif;
    position: relative;
}

/* POPUP */
.form-container-sh .popup {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    width: 350px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 5px;
    font-size: 10px;
}

.form-container-sh .popup p {
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.form-container-sh .popup.show {
    display: block;
}

/* CHECKBOX TEXTO */
.form-container-sh .label-checkbox-form {
    font-size: 12px;
    font-family: "Montserrat", system-ui, -apple-system, sans-serif;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
}

/* BOTÓN */
.form-container-sh .btn-enviar {
    background: #fff !important;
    color: #3B6FFF !important;
    padding: 18px 80px;
    border-radius: 30px;
    border: none !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    min-width: 180px;
    line-height: 1;
    margin-top: 20px;
}

.form-container-sh .btn-enviar,
.form-container-sh .btn-enviar:hover,
.form-container-sh .btn-enviar:focus,
.form-container-sh .btn-enviar:active {
    background: #fff !important;
    color: #3B6FFF !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.label-checkbox-form .group-link:visited {
    color: #c8f55a !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .form-container-sh #nombre {
        width: 100%;
        min-width: 100% !important;
        font-size: 24px;
    }

    .form-container-sh {
        background: url("https://novafin.es/wp-content/uploads/2025/09/Form_wrapper_mobile.png") no-repeat top center;
        background-size: 100% 100%;
        background-position: top center;
        width: 100vw;
        max-width: 100%;
        padding: 100px 20px 40px;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .form-container-sh .form-style-sh {
        width: 100% !important;
        max-width: 100% !important;
    }

    .form-container-sh .form-group label {
        font-size: 16px;
    }

    .form-container-sh .label-checkbox-form {
        font-size: 14px;
        margin-top: 13px;
        line-height: 1.4;
    }

    .form-container-sh .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-container-sh .form-row .form-group input,
    .form-container-sh .form-row .form-group select {
        width: 100% !important;
        max-width: 100% !important;
        max-width: none;
        height: 55px;
        font-size: 14px;
    }

    .form-container-sh .popup {
        width: 300px;
    }

    .form-container-sh .btn-enviar {
        display: block !important;
        margin-left: 28% !important;
        margin-right: auto !important;
        text-align: center !important;
        width: 67% !important;
    }
}