body {
    min-height: 100vh;

            /* 🔽 Background Image + Dark Overlay */
            background-image:
                linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("bg.png");

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
}


@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-card {
    background: #0c0c0c;
    padding: 30px;
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 40px rgba(0,0,0,0.9);
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
}

.welcome-text {
    color: #ccc;
}

.form-control {
    background: #121212;
    border: 1px solid #2a2a2a;
    color: #ffffff;
}

.form-control::placeholder {
    color: #777;
}

.form-control:focus {
    background: #121212;
    color: #fff;
    border-color: #555;
    box-shadow: none;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.captcha-text {
    font-weight: 600;
    color: #ddd;
    min-width: 80px;
}

.btn-refresh {
    background: #121212;
    border: 1px solid #2a2a2a;
    color: #fff;
}

.btn-login {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
}

.btn-google {
    border: 1px solid #2a2a2a;
    background: transparent;
    color: #ffffff;
}

.btn-google:hover {
    background: #1a1a1a;
}

.forgot-link {
    color: #aaa;
    font-size: 14px;
}

.forgot-link:hover {
    color: #ffffff;
}

.register-text {
    font-size: 14px;
    color: #aaa;
}

.register-text a {
    color: #ffffff;
    font-weight: 600;
    margin-left: 5px;
}
/* =========================
   LOGIN RESPONSIVE FIX
========================= */

/* Tablets */
@media (max-width: 992px) {
    .login-card {
        max-width: 380px;
        padding: 28px;
    }

    .logo {
        font-size: 22px;
    }
}

/* Phones */
@media (max-width: 576px) {
    body {
        padding: 15px;
    }

    .login-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .welcome-text {
        font-size: 14px;
    }

    .form-control-lg {
        font-size: 15px;
        padding: 10px 12px;
    }

    .captcha-text {
        font-size: 14px;
        min-width: 70px;
    }

    .btn-login {
        font-size: 15px;
        padding: 12px;
    }

    .forgot-link,
    .register-text {
        font-size: 13px;
    }
}
@media (max-width: 400px) {
    .captcha-text {
        min-width: auto;
    }

    .mb-3.d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-refresh {
        width: 100%;
    }
}
