@media (min-width: 768px) {
.b24-form-field,.b24-form-field-name,.b24-form-control-string{
    
.b24-form-field {
    margin-bottom: 20px;
}

/* Formulario en 2 columnas */
.b24-form-field {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding: 0 10px;
}

/* Comentario ocupa todo el ancho */
.b24-form-field-text {
    width: 100%;
}

/* Inputs estilo Bootstrap */
.b24-form-control {
    width: 100%;
    box-sizing: border-box;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    outline: none;
    transition: border-color .15s ease-in-out,
                box-shadow .15s ease-in-out;
}

/* Textarea */
textarea.b24-form-control {
    min-height: 100px;
    resize: vertical;
}

/* Efecto al seleccionar */
.b24-form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .15);
}

/* Etiquetas */
.b24-form-control-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

/* Asterisco */
.b24-form-control-required {
    color: #dc3545;
}

/* Botón */
.b24-form-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    background-color: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 6px;
    cursor: pointer;
}

.b24-form-btn:hover {
    background-color: #0b5ed7;
}

/* Responsive: una columna en celulares */
@media (max-width: 768px) {
    .b24-form-field {
        width: 100%;
    }
}}
    form > div:first-of-type {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
    .b24-form-field-text {
    grid-column: 1 / -1;
}

}		
		
		/* Fondo suave del formulario */
form {
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
}

/* Campos con fondo gris muy suave */
.b24-form-control {
    background-color: #eef1f5 !important;
    border: 1px solid #7f8ca1 !important;
}

.b24-form-control:focus {
    background-color: #fff  !important;
}

