/* ===== COLORES CAHUIC NUEVOS ===== */
:root {
    --rosa-neon: #ff4fa3;
    --rosa-pastel: #f8c8dc;
    --lila-suave: #c9c3e6;
    --verde-suave: #c9d7a6;
    --blanco: #ffffff;
    --gris-texto: #5a5a5a;
}

/* ===== GENERAL ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 90px;

    /* Fondo artístico tipo pincel */
    background: linear-gradient(135deg, var(--lila-suave), var(--verde-suave));
}

/* ===== NAVBAR ===== */
.text-cahuic {
    color: var(--rosa-neon) !important;
    font-size: 1.3rem;
}

.btn-cahuic-outline {
    border: 2px solid var(--rosa-neon);
    color: var(--rosa-neon);
    border-radius: 30px;
    padding: 6px 20px;
    transition: 0.3s ease;
}

.btn-cahuic-outline:hover {
    background: var(--rosa-neon);
    color: white;
}

/* ===== SECCIÓN LOGIN ===== */
.login-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CARD ===== */
.login-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(255, 79, 163, 0.3);
    animation: fadeIn 0.8s ease-in-out;
}

/* Título */
.login-card h2 {
    color: var(--rosa-neon);
    font-weight: 700;
}

/* ===== INPUTS ===== */
.form-control, .form-select {
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--rosa-neon);
    box-shadow: 0 0 0 0.2rem rgba(255, 79, 163, 0.25);
}

/* ===== BOTÓN PRINCIPAL ===== */
.btn-cahuic {
    background: linear-gradient(45deg, var(--rosa-neon), #ff7eb9);
    color: white;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn-cahuic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 79, 163, 0.4);
}

/* ===== BOTÓN GOOGLE ===== */
.btn-google {
    background: white;
    border: 2px solid var(--rosa-neon);
    color: var(--rosa-neon);
    border-radius: 30px;
    padding: 10px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-google:hover {
    background: var(--rosa-neon);
    color: white;
}

/* ===== FOOTER ===== */
footer {
    border-top: 2px solid var(--rosa-pastel);
    background: rgba(255,255,255,0.6);
}

/* ===== ANIMACIÓN ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}