/* ===== GLOBAL ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: #0b0617; /* dark purple luxury */
    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(255, 183, 0, 0.15),
        rgba(11, 6, 23, 0.95));
}

/* ===== CARD ===== */
.auth-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 183, 0, 0.4);
    border-radius: 25px;
    padding: 40px 35px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 60px rgba(255, 183, 0, 0.2);
    transition: 0.4s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 80px rgba(255, 183, 0, 0.35);
}

/* ===== LOGO ===== */
.auth-logo {
    max-height: 60px;
}

.brand-title {
    font-weight: 700;
    background: linear-gradient(90deg,#ffcc00,#ff8800,#ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== HEADINGS ===== */
.auth-heading {
    font-weight: 700;
    color: #fff;
}

/* ===== INPUTS ===== */
.form-label {
    color: #d1d5db;
    font-size: 14px;
}

.form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 183, 0, 0.3);
    color: #fff;
    padding: 12px 15px;
    border-radius: 12px;
}

.form-control:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 183, 0, 0.4);
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ===== BUTTON ===== */
.btn-premium {
    background: linear-gradient(90deg,#ffcc00,#ff8800);
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 183, 0, 0.6);
}

/* ===== LINKS ===== */
.auth-links a {
    color: #ffcc00;
    text-decoration: none;
}

.home-link {
    display: inline-block;
    margin-top: 5px;
    color: #9ca3af;
}

.home-link:hover {
    color: #ffcc00;
}

/* ===== 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 ===== */
::placeholder {
    color: #9ca3af !important;
}

.form-control::placeholder {
    color: #9ca3af !important;
}