/* -------------------------
   FORMULARIO SOLICITUD AAP
   ------------------------- */

/* Contenedor principal del formulario */
.registro-card {
    max-width: 960px;
    margin: 30px auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    padding: 35px 45px 40px;
    position: relative;
}

/* Logo centrado */
.registro-card .auth-logo img {
    width: 70px;
    margin-bottom: 10px;
}

/* Título principal */
.registro-card h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #002b5c;
    text-align: center;
    margin: 0 0 4px 0;
}

/* Subtítulo naranja */
.registro-card .subtitulo {
    text-align: center;
    color: #f36f21;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* Texto descriptivo bajo el título */
.registro-card .texto-info {
    font-size: 13px;
    color: #444;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Título de cada bloque (DATOS PROFESIONALES, etc.) */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #002b5c;
    border-bottom: 2px solid #f36f21;
    padding-bottom: 4px;
    margin-top: 25px;
    margin-bottom: 14px;
}

/* Etiquetas de campos */
.form-label {
    display: block;
    font-size: 14px;
    color: #002b5c;
    margin-bottom: 3px;
}

/* Inputs de texto / email / date */
.registro-card input[type="text"],
.registro-card input[type="email"],
.registro-card input[type="date"],
.registro-card input[type="tel"],
.registro-card input[type="number"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c3ccd8;
    background: #f9fbff;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #1f2933;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Estado foco */
.registro-card input[type="text"]:focus,
.registro-card input[type="email"]:focus,
.registro-card input[type="date"]:focus,
.registro-card input[type="tel"]:focus,
.registro-card input[type="number"]:focus {
    border-color: #f36f21;
    box-shadow: 0 0 0 2px rgba(243, 111, 33, 0.28);
    background: #ffffff;
}

/* Inputs file */
.registro-card input[type="file"] {
    display: block;
    width: 100%;
    font-size: 13px;
    margin-top: 3px;
}

/* Separación entre campos */
.registro-card .mb-3,
.registro-card .mb-2 {
    margin-bottom: 12px;
}

/* Pequeña nota bajo el email */
.nota-ayuda {
    font-size: 12px;
    color: #555;
    margin-top: 3px;
    margin-bottom: 15px;
}

/* Errores de validación */
.text-danger {
    font-size: 12px;
    margin-top: 2px;
}

/* Alert general de errores */
.registro-card .alert {
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    margin-bottom: 15px;
}

.registro-card .alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* Botón principal */
.btn-aap {
    background-color: #f36f21;
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-aap:hover {
    background-color: #d65a14;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

/* Botón centrado */
.registro-card .text-center {
    text-align: center;
}

/* Listado de cuotas al final */
.registro-card ul {
    font-size: 13px;
    margin-top: 8px;
}

/* Grid responsivo para 2/3 columnas usando Bootstrap row/col */
.registro-card .row {
    margin-left: -8px;
    margin-right: -8px;
}

.registro-card .row > [class^="col-"],
.registro-card .row > [class*=" col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

/* Responsive: en mobile el card ocupa casi todo el ancho */
@media (max-width: 768px) {
    .registro-card {
        margin: 15px;
        padding: 20px 18px 25px;
    }
}
