/* Fuentes ya definidas en main.css */

/* Aplicamos la fuente a toda la nueva landing */
.index-container {
    font-family: 'Helvetica Neue LT Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Fondo degradado aplicado al contenedor principal para cubrir el default del body */
.index-container {
    background: linear-gradient(219.49deg, #124276 4.68%, #176A9F 16.77%, #1B8EC5 29.87%, #1FA8E0 41.96%, #21B8F1 53.04%, #22BEF7 61.1%, #26BCC3 73.19%, #2EBB65 93.34%, #64C68F 98.38%, #95D1B6 103.41%, #A9D6C6 105.43%);
    background-image: linear-gradient(219.49deg, #124276 4.68%, #176A9F 16.77%, #1B8EC5 29.87%, #1FA8E0 41.96%, #21B8F1 53.04%, #22BEF7 61.1%, #26BCC3 73.19%, #2EBB65 93.34%, #64C68F 98.38%, #95D1B6 103.41%, #A9D6C6 105.43%);
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    
    /* Flex para centrar */
    display: flex;
    flex-direction: column;
    position: absolute; /* Para cubrir cualquier padding del body si lo hubiera */
    top: 0;
    left: 0;
    z-index: 10; /* Asegurar que está por encima */
}

/* Contenido Principal */
.index-content-wrapper {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}

/* Logo Principal */
.index-main-logo {
    max-width: 600px;
    width: 100%;
    margin-bottom: 3rem; 
}

/* Botones Landing */
.toxin-btn-landing {
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    min-width: 220px;
    margin: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-landing-register {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-landing-register:hover {
    background: white;
    color: #1B8EC5; 
}

.btn-landing-login {
    background: white;
    border: 1px solid white;
    color: #1B8EC5;
}

.btn-landing-login:hover {
    background: #f8f9fa;
    color: #124276; 
}

/* Footer de Logos */
.index-footer-logos {
    background-color: #002D72; 
    padding: 20px 0;
    width: 100%;
    flex-shrink: 0; 
}

.endorsement-text {
    color: white;
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    font-weight: 300;
}

/* ... existing code ... */
@media (max-width: 768px) {
    .btn-landing-register, .btn-landing-login {
        width: 100%;
        max-width: 300px;
    }
}

/* ... existing code ... */
/* --- Estilos para Modales (Registro / Login) --- */
/* (La clase .text-gradient ya está definida en main.css con el gradiente correcto) */

/* Labels (Sobreescribe text-blue) */
#register-modal label, 
#login-modal label {
    color: #003982 !important;
}

/* Checks text */
#register-modal .form-check-label, 
#login-modal .form-check-label,
#register-modal .form-check, 
#login-modal .form-check {
    color: #AAAAAA !important;
}

/* Inputs */
#register-modal .form-control, 
#login-modal .form-control {
    box-shadow: 0px 4.8px 24px 0px #00000012 inset !important;
    border-radius: 8px !important;
    background-color: #EEEDEE !important;
    color: #003982 !important;
    border: none !important; /* Eliminamos bordes para que se vea limpio como la imagen w/ shadow */
}


/* Botones de acción (Continuar/Acceder) */
#register-modal button[type="submit"], 
#login-modal button[type="submit"] {
    background: #2EBB65 !important;
    border-radius: 28px !important;
    color: #FFFFFF !important;
    border: none !important;
    text-transform: uppercase;
    font-weight: bold;
}

/* Logos Footer (reemplazo de estilos en línea para CSP) */
.logo-ipsen {
    max-height: 45px;
}

.logo-sermef {
    max-height: 50px;
}

.btn-landing-program {
    min-width: 250px!important;
    font-size: 1.1rem!important;
}

.text-underline {
    text-decoration: underline !important;
}

