/* ===== RESET ESPECÍFICO PARA LOGIN ===== */
.login-reset * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.login-main {
    display: flex;
    width: 100vw;
    min-height: calc(100vh - 120px);
    background: white;
}

/* ===== SECCIÓN DE IMAGEN ===== */
.login-image-section {
    flex: 0 0 50%;
    background: #003456;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image-section img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* ===== FORMULARIO ===== */
.login-form-section {
    flex: 0 0 50%;
    padding: 4rem;
    background: #002842;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-title {
    color: #f8c32e !important;
    font-size: 2.5rem !important;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.login-form-group {
    margin-bottom: 1.5rem;
}

.login-form-label {
    display: block;
    color: white !important;
    margin-bottom: 0.5rem;
    font-size: 1rem !important;
}

.login-form-input {
    width: 100% !important;
    padding: 12px !important;
    border: 2px solid #f8c32e !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: white !important;
    font-size: 1rem !important;
}

.login-form-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.login-form-button {
    width: 100% !important;
    padding: 15px !important;
    background: #f8c32e !important;
    color: #003456 !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    cursor: pointer;
    margin-top: 1rem !important;
}

.login-links {
    text-align: center;
    margin-top: 2rem;
}

.login-link {
    color: #f8c32e !important;
    text-decoration: none !important;
    display: block;
    margin: 0.8rem 0;
    font-size: 0.95rem !important;
}

.login-footer {
    background: #003356 !important; /* Color principal CEIAO */
    color: white !important;
    padding: 1.5rem !important;
    text-align: center !important;
    margin-top: auto !important; /* Fuerza al footer al final */
    width: 100% !important;
    border-top: 2px solid #f8c32e !important; /* Borde decorativo */
    font-family: 'Poppins', sans-serif !important;
}

.login-footer p {
    margin: 0.5rem 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.login-footer a {
    color: #f8c32e !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
}

.login-footer a:hover {
    text-decoration: underline !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .login-main {
        flex-direction: column;
    }
    
    .login-image-section,
    .login-form-section {
        flex: 0 0 100%;
        padding: 2rem;
    }
    
    .login-form-title {
        font-size: 2rem !important;
    }
    
    .login-image-section img {
        max-width: 400px;
    }
}