/* =========================
   BACKGROUND
========================= */
.login-bg {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #2563eb, #1e40af); */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   WRAPPER
========================= */
.login-wrapper {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

/* =========================
   CARD
========================= */
.login-card {
    max-width: 1100px;
    width: 100%;
    min-height: 350px;
    border-radius: 18px;
    overflow: hidden;
    /* background: rgba(255,255,255,0.97); */
    animation: fadeUp 0.6s ease;
}

/* =========================
   LEFT PANEL
========================= */
.bg-login-image {
    /* background: linear-gradient(
        160deg,
        rgba(37,99,235,0.95),
        rgba(30,64,175,0.95)
    ); */
}

/* =========================
   INPUT & BUTTON
========================= */
.form-control-user {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
}

h2 {
    color: #000000;
}

h5 {
    color: #000000;
}

p {
    color: #000000;
}

.form-control-user:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.15rem rgba(37,99,235,0.25);
}

.btn-user {
    border-radius: 10px;
    font-size: 1rem;
    padding: 0.75rem;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .login-card {
        min-height: auto;
        border-radius: 14px;
    }
}
