body {
    background: #f0f3f8;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/* NAV */
.nav {
    background: #173f73;
    color: white;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
}

.nav h2 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.nav p {
    margin: 4px 0;
    font-size: 14px;
}

/* Contenedor */
.contenedor {
    background: #ffffff;
    width: 420px;
    padding: 25px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

.titulo {
    text-align: center;
    color: #173f73;
    margin-bottom: 20px;
}

/* Formulario */
.formulario label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.formulario input,
.formulario textarea {
    width: 95%;
    padding: 10px;
    margin: 6px 0;
    border-radius: 8px;
    border: 1px solid #b7bec7;
    font-size: 14px;
}

.formulario input:focus,
.formulario textarea:focus {
    border-color: #173f73;
    outline: none;
}

.intereses-titulo {
    margin-top: 10px;
    font-weight: bold;
}

.intereses {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Fuerza que todo quede alineado a la izquierda */
}

.intereses label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto; /* Evita que el label se estire */
}
/* Botón */
.btn {
    background: #173f73;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #1e538f;
}

/* FOOTER */
.footer {
    background: #0d2a4b;
    color: white;
    text-align: center;
    padding: 15px 10px;
    margin-top: 40px;
    font-size: 14px;
}

.footer p {
    margin: 4px 0;
}
