.rea-form-wrapper {
    background: #fff;
    color: #111;
    padding: 40px 0;
    font-family: 'Lato', Arial, sans-serif;
}

.rea-form {
    max-width: 1120px;
    margin: 0 auto;
    background: #fff;
}

.rea-form-intro {
    margin-bottom: 45px;
}

.rea-form-intro h2 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 12px;
    font-weight: 800;
    color: #111;
}

.rea-form-intro p {
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 18px;
    color: #111;
}

.rea-form-field {
    margin: 0 0 48px;
}

/* Anulado: antes daba fondo gris a puntos como 7 y 12 */
.rea-form-field--soft {
    background: #fff;
    padding: 0;
}

.rea-form-field label,
.rea-form-field legend {
    display: block;
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    color: #111;
}

/* Solo el asterisco obligatorio queda rojo */
.rea-form-field>label:not(.rea-option-line)>span,
.rea-form-field>legend>span {
    color: #c0392b;
}

/* Evita que los textos largos de 18 y 19 salgan en rojo */
.rea-form-options label span {
    color: #111;
}

.rea-form-field input[type="text"],
.rea-form-field input[type="email"],
.rea-form-field input[type="tel"],
.rea-form-field textarea {
    width: 100%;
    border: 0;
    background: #f4f4f4;
    border-radius: 4px;
    padding: 15px 14px;
    font-size: 14px;
    color: #111;
    box-shadow: none;
    outline: 0;
}

.rea-form-field textarea {
    min-height: 95px;
    resize: vertical;
}

.rea-form-options {
    border: 0;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.rea-form-options p {
    font-size: 15px;
    line-height: 1.35;
    margin: 0 0 22px;
    color: #111;
}

.rea-form-options label {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
    color: #111;
}

.rea-form-options input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1.5px solid #333;
    border-radius: 50%;
    background: #fff;
    margin: 0;
    position: relative;
}

.rea-form-options input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #55bdd0;
    border-radius: 50%;
}

/* Opciones largas, puntos 18 y 19 */
.rea-form-options .rea-option-line {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    line-height: 1.35;
    color: #111;
}

.rea-form-options .rea-option-line input[type="radio"] {
    flex: 0 0 20px;
    margin-top: 1px;
}

.rea-form-options .rea-option-line span {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    color: #111;
}

.rea-form-options .rea-option-line strong {
    font-weight: 800;
    color: #111;
}

.rea-form-file input[type="file"] {
    display: block;
    margin: 8px 0 12px;
}

.rea-form-file small {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    color: #333;
}

.rea-form-actions {
    margin-top: 35px;
}

.rea-form-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #55bdd0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 13px 34px;
    cursor: pointer;
}

.rea-form-actions button:hover {
    background: #46b0c4;
}

.rea-form-message {
    max-width: 1120px;
    margin: 0 auto 30px;
    padding: 18px 22px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.4;
}

.rea-form-message ul {
    margin: 10px 0 0 20px;
}

.rea-form-message--success {
    background: #e7f8ef;
    color: #115c2f;
    border: 1px solid #b7e6c8;
}

.rea-form-message--error {
    background: #fff1f0;
    color: #8a1f17;
    border: 1px solid #f0b5af;
}

@media (max-width: 767px) {
    .rea-form-wrapper {
        padding: 32px 0;
    }

    .rea-form-field {
        margin-bottom: 36px;
    }

    .rea-form-field label,
    .rea-form-field legend {
        font-size: 18px;
    }

    .rea-form-field--soft {
        background: #fff;
        padding: 0;
    }

    .rea-form-options label {
        font-size: 14px;
    }

    .rea-form-intro h2 {
        font-size: 21px;
    }
}