
body {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        
                          url('/images/loginBackground.jpg');

        
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        height: 100vh;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-box, .card { 
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    }
    
    .login-box {
        width: 420px;
        z-index: 10;
        animation: cardFadeIn 1.2s ease-out;
    }

    @keyframes cardFadeIn {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .card {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 2px solid #D4AF37; 
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    }

    .card-header .h1 b {
        font-family: 'Playfair Display', serif;
        color: #D4AF37;
        letter-spacing: 5px;
        text-transform: uppercase;
    }

    .form-control {
        border-radius: 10px;
        border: 1px solid #ddd;
    }

    .form-control:focus {
        border-color: #D4AF37;
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    }

    .btn-gold {
        background: linear-gradient(135deg, #D4AF37 0%, #aa8928 100%);
        color: white !important;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        transition: 0.4s;
        padding: 10px;
    }

    .btn-gold:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        color: white;
    }

    .input-group-text {
        background: transparent;
        color: #D4AF37;
        border-left: none;
    }

    /* Social Buttons Upgrade */
    .btn-social {
        border-radius: 50px;
        font-size: 13px;
        transition: 0.3s;
    }
    /* Typography & Subtext */
.brand-subtext {
    margin-bottom: 0;
    color: #888;
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Luxury Link Style */
.forgot-link {
    font-size: 0.85rem;
    color: #D4AF37;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.forgot-link:hover {
    color: #aa8928;
    text-decoration: underline;
}

/* Full Width Button with Luxury Feel */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border: none;
    letter-spacing: 1px;
    padding: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Separator */
.light-hr {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    width: 50%;
    margin: 20px auto;
}

/* Card adjustments */
.card {
    border: 1px solid rgba(212, 175, 55, 0.3) !important; /* Thinner subtle border */
}
.infoText{
    background: linear-gradient(90deg, #D4AF37 0%, #B8860B 100%);
    color: #fff;
    padding: 16px 22px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 4px rgba(255, 215, 0, 0.18);
    box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.35);
}