#formulario-hbm {
    max-width: 420px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f6f5f5;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#formulario-hbm label{
    font-size: 16px;
    font-weight:600;
    color: #939292;
    font-family: Arial, sans-serif;
}

#formulario-hbm input,
#formulario-hbm select,
#formulario-hbm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #8c8c8c;
    font-size: 16px;
    font-weight:600;
}

#formulario-hbm button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


#formulario-hbm button {
    background-color: #1A3982;
    color: white;
    cursor: pointer;
    border: none;
    font-size: 16px;
    margin-top: 20px;
}

#formulario-hbm button:hover {
    background-color: #005f8d;
}

#respuesta p {
    color: green;
    font-weight: bold;
}

#respuesta p.error {
    color: red;
}

/* Estilos para reCAPTCHA */
.form-section {
    margin: 15px 0;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

/* Para dispositivos móviles */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.8);
        transform-origin: 0 0;
    }
}
