/* HEADER BACKGROUND */
.login-header {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 120px 20px 5px; /* navbar ke niche space */
    position: relative;
    overflow: hidden;
}

/* GOLD GLOW EFFECT */
.login-header::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.4), transparent);
    top: -50px;
    left: -50px;
    filter: blur(80px);
    animation: glowMove 6s infinite alternate;
}

.login-header::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,215,0,0.3), transparent);
    bottom: -50px;
    right: -50px;
    filter: blur(80px);
    animation: glowMove 8s infinite alternate-reverse;
}

/* TITLE */
.login-title {
    font-size: 34px; /* thoda compact */
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #FFD700, #FFC107, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(255,215,0,0.3);
    transition: 0.3s;
}
.login-title:hover {
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255,215,0,0.6);
}
/* ANIMATION */
@keyframes glowMove {
    from {
        transform: translate(0,0);
    }
    to {
        transform: translate(50px,50px);
    }
}
.login-title {
    letter-spacing: 2px;
    animation: shimmer 3s infinite linear;
}
@keyframes shimmer {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
    100% { filter: brightness(1); }
}
@media (max-width: 768px) {
    
    .login-header {
        padding: 80px 15px 2px; /* mobile ke liye kam */
    }

    .login-title {
        font-size: 20px; /* mobile readable */
    }

}
@media (min-width: 1200px) {
    
    .login-title {
        font-size: 30px;
    }
}

/* PREMIUM BUTTON */
.premium-btn{
    position: relative;
    background: linear-gradient(45deg, #FFD700, #FFC107);
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

/* GLOW LAYER */
.premium-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

/* HOVER EFFECT */
.premium-btn:hover{
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px rgba(255,215,0,0.6);
}

.premium-btn:hover::before{
    opacity: 1;
}

/* CLICK EFFECT */
.premium-btn:active{
    transform: scale(0.96);
}
.form-control{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 10px;
}

.form-control::placeholder{
    color: #aaa;
}

.form-control:focus{
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255,215,0,0.3);
}
body {
    background: radial-gradient(circle at top, #0b0b1a, #02020a);
}
/* PREMIUM CARD */
.card{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* GOLD GLOW INSIDE */
.card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,215,0,0.15), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255,215,0,0.1), transparent 40%);
    opacity: 0;
    transition: 0.4s;
}

/* HOVER EFFECT */
.card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(255,215,0,0.2);
}

.card:hover::before{
    opacity: 1;
}
.card h4{
    font-size: 18px;
    color: #ddd;
    letter-spacing: 0.5px;
}

hr{
    border-color: rgba(255,255,255,0.1);
}
.container{
    position: relative;
    z-index: 2;
}
.card::before,
.login-header::before,
.login-header::after {
    pointer-events: none;
}
.card > * {
    position: relative;
    z-index: 2;
}
.card {
    position: relative;
    z-index: 1;
}
.login-header::before,
.login-header::after,
.login-page::before,
.login-page::after {
    pointer-events: none;
}
