/* ================================================
   CSS PARA LOGIN - EDUTIC 2026
   Agregar después de congresosecciones2026.css
   SOLO USA COLORES: --edutic-blue, --edutic-dark
   ================================================ */

/* Banner de login */
.hero-login {
    background: linear-gradient(135deg, var(--edutic-dark) 0%, var(--edutic-blue) 100%);
    min-height: 280px;
    padding: 120px 0 80px;
}


.login-banner-content {
    text-align: center;
    color: white;
}

.login-banner-content .title{
    font-size: 2rem;
}

.badge-login {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.login-banner-date {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Formulario 2 columnas */
.login-wrapper {
    margin-top: -60px;
    padding-bottom: 3rem;
}

.login-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.login-info-col {
    background: var(--edutic-blue);
    color: white;
    padding: 3rem 2.5rem;
}

.login-form-col {
    background: white;
    padding: 3rem 2.5rem;
}

.login-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Inputs con iconos */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 5;
}

.form-control-login {
    padding-left: 3rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.form-control-login:focus {
    border-color: var(--edutic-blue);
    box-shadow: 0 0 0 0.2rem rgba(95, 131, 232, 0.15);
}

/* Botones */
.btn-login {
    background: var(--edutic-orange);
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    color: white;
    font-weight: 600;
}

.btn-login:hover {
    background: var(--edutic-orange);
    color: var(--edutic-yellow);
}

/* Botones */
.btn-recover {
    background: var(--edutic-blue);
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    color: white;
    font-weight: 600;
}

.btn-recover:hover {
    background: var(--edutic-blue);
    color: var(--edutic-yellow);
}

.btn-register {
    background: white;
    border: 2px solid var(--edutic-blue);
    color: var(--edutic-blue);
    border-radius: 10px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-register:hover {
    background: var(--edutic-blue);
    color: white;
    text-decoration: none;
}

.register-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-login {
        min-height: 240px;
        padding: 120px 0 50px;
    }

    .login-wrapper {
        margin-top: -60px;
    }

    .login-info-col,
    .login-form-col {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 767px) {
    .hero-login {
        padding: 100px 0 40px;
    }

    .login-wrapper {
        margin-top: -40px;
    }
}
