/* ===== GLOBAL ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: #020617;
    overflow-x: hidden;
}

/* ===== BACKGROUND ===== */
.auth-wrapper {
    position: relative;
    background: url('../images/auth-bg.gif') center/cover no-repeat;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(30,144,255,0.15),
        rgba(2,6,23,0.95));
}

/* ===== CARD ===== */
.auth-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,200,83,0.35);
    border-radius: 25px;
    padding: 40px 35px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 60px rgba(0,200,83,0.15);
    transition: 0.4s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 70px rgba(0,200,83,0.25);
}

/* ===== LOGO ===== */
.auth-logo {
    max-height: 60px;
}

.brand-title {
    font-weight: 700;
    background: linear-gradient(90deg,#1e90ff,#00c853,#ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== HEADINGS ===== */
.auth-heading {
    font-weight: 700;
    color: #fff;
}

/* ===== INPUTS ===== */
.form-label {
    color: #cbd5e1;
    font-size: 14px;
}

.form-control {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(30,144,255,0.35);
    color: #fff;
    padding: 12px 15px;
    border-radius: 12px;
}

.form-control:focus {
    border-color: #00c853;
    box-shadow: 0 0 15px rgba(0,200,83,0.4);
    background: rgba(255,255,255,0.06);
    color: #fff;
}

/* ===== BUTTON ===== */
.btn-premium {
    background: linear-gradient(90deg,#00c853,#ffd700);
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
}

.btn-premium:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255,215,0,0.5);
}

/* ===== LINKS ===== */
.auth-links a {
    color: #00c853;
    text-decoration: none;
}

.home-link {
    display: inline-block;
    margin-top: 5px;
    color: #94a3b8;
}

.home-link:hover {
    color: #ffd700;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {

    .auth-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .brand-title {
        font-size: 20px;
    }

    .auth-heading {
        font-size: 22px;
    }
}

/* ===== Placeholder Color Fix ===== */
::placeholder {
    color: #9ca3af !important;
    opacity: 1;
}

.form-control::placeholder {
    color: #94a3b8 !important;
}

.form-control:-ms-input-placeholder {
    color: #94a3b8 !important;
}

.form-control::-ms-input-placeholder {
    color: #94a3b8 !important;
}