/* ================= LOGIN / REGISTRO ================= */
/* FONDO PARA EL HEADER */
.hero-custom {
    height: 70px; /* Altura fija para el header */
    background: linear-gradient(135deg, #0b1c3d 0%, #1f3c88 100%);
    color: white;
    text-align: center;
   }


.registro-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 80vh;
    background-color: #f4f7f6; /* Fondo sutil para que resalte la caja */
}

.login-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(11, 28, 61, 0.1);
    max-width: 400px;
    width: 100%;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0b1c3d;
    font-size: 2rem;
    font-weight: 800;
}

.login-form input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #e1e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input:focus {
    border-color: #1f3c88;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(31, 60, 136, 0.1);
    outline: none;
}

/* Botón Principal (Ingresar) */
.login-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0b1c3d, #1f3c88);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(11, 28, 61, 0.2);
}

/* Separador "o" */
.separador-con-lineas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.separador-con-lineas hr {
    flex: 1;
    border: none;
    border-top: 1px solid #e1e8f0;
}

.separador-con-lineas span {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Botón Secundario (Registrarse) */
.login-form button[type="button"] {
    width: 100%;
    padding: 13px;
    background: transparent;
    color: #1f3c88;
    border: 2px solid #1f3c88;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.login-form button[type="button"]:hover {
    background: #1f3c88;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .login-form {
        padding: 30px 20px;
    }

            .hero-custom {
         height: 60px; /* Altura fija para el header */
    }
}