/**
 * Award Form — solo estilos específicos del módulo.
 *
 * Los inputs, etiquetas, errores, botones y mensajes se heredan del tema
 * coem25 (componentes _forms.scss): .form-section, .form-row, .form-field,
 * .col-md-6, .error-message, .form-actions, .btn-submit, .coem-message…
 *
 * Aquí solo añadimos los matices propios del flujo de premios/becas.
 */

/* Cabecera del formulario */
.coem-award-form-wrapper {
    max-width: 760px;
    margin: 1rem auto;
}
.coem-award-form-header {
    margin-bottom: 1.5rem;
}
.coem-award-form-header h2 {
    margin: 0 0 0.5rem;
    color: #0F81C4;
}
.coem-award-form-header p {
    margin: 0.25rem 0;
}
.coem-award-description {
    color: #444;
}
.coem-award-bases-link {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: underline;
}
.coem-award-deadline {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #fff8e1;
    border-left: 3px solid #f0a400;
    border-radius: 4px;
}

/* Aviso de convocatoria anónima — refuerza tipografía sobre .coem-message-warning */
.coem-award-anonymous-note {
    text-align: left;
}

/* Checkbox dinámico: que la etiqueta no parezca un input en sí */
.form-field-check label {
    color: inherit;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}
.form-field-check input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Radio dinámico: lista horizontal de opciones */
.form-field-radio .form-field-radio-label {
    display: block;
    color: #0F81C4;
    font-size: 15px;
    margin-bottom: 6px;
}
.form-field-radio .form-field-radio-option {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 1rem 0.4rem 0;
    color: inherit;
    font-size: 14px;
    cursor: pointer;
}
.form-field-radio .form-field-radio-option input[type="radio"] {
    width: auto;
    margin: 0;
}

/* Feedback global tras submit (success/error) */
.coem-award-feedback {
    margin-top: 1rem;
}
.coem-award-feedback:empty {
    display: none;
}

/* Enlaces dentro de los notices del módulo award (login, bases, etc.) en color primario y negrita */
.coem-award-link,
.coem-award-link:visited {
    color: #0F81C4;
    font-weight: 700;
    text-decoration: underline;
}
.coem-award-link:hover,
.coem-award-link:focus {
    color: #0d6ba3;
    text-decoration: underline;
}
