.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IZQUIERDA MOTIVACIONAL */
.left-motivation {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    border-radius: 20px;
    padding: 50px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
}

.left-motivation h2 {
    font-size: 2rem;
    font-weight: 900;
}

.left-motivation p {
    margin-top: 1rem;
    font-size: 1rem;
}

.motivational-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.motivational-stats .stat {
    text-align: center;
}

.motivational-stats .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* DIVISOR (línea diagonal tipo showcase) */
.login-container::before {
    /*content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: translateX(-50%);*/
}

/* LOGIN CARD DERECHA */
.login-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Logo y subtítulo */
.login-logo {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: #4e54c8;
    margin-bottom: 8px;
}

.login-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
}

/* INPUTS */
.input-group-text {
    background: transparent;
    border: none;
    color: #6c757d;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #6610f2;
    box-shadow: 0 0 8px rgba(102,16,242,0.3);
    outline: none;
}

/* BOTÓN */
.btn-login {
    border-radius: 25px;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    transform: translateY(-3px) scale(1.02);
}

/* LINKS EXTRA */
.extra-links {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
}

.extra-links a {
    color: #6610f2;
    text-decoration: none;
    font-weight: 500;
}

.extra-links a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .left-motivation {
        display: none; /* solo visible en lg+ */
    }
}
