/* ============================
   ESTILO GENERAL AAS
   ============================ */

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f5f7fa;
    color: #002147;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Contenedor principal */
main {
    max-width: 900px;
    margin: 2.5rem auto;
    background: white;
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid #d9dce0;
}

/* Encabezados */
h1, h2 {
    color: #002147;
    margin-top: 0;
}

/* Enlaces */
a {
    color: #002147;
    text-decoration: underline;
}

a:hover {
    color: #00162b;
}

/* Formularios */
label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 0.55rem;
    margin-top: 0.3rem;
    border: 1px solid #bfc5cc;
    border-radius: 4px;
    font-size: 1rem;
}

button,
.boton-primario {
    display: block;
    margin: 2rem auto 0;
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
    background-color: #002147;
    color: #fdd835;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

button:hover,
.boton-primario:hover {
    background-color: #00162b;
}

/* Pie de página */
footer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #444;
}

footer a {
    color: #002147;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}