 /* Entire Section Transparent */
 .account-info-section {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
 
    background: transparent;
}

/* Glassmorphism Card */
.account-info-container {
    width:90%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient Background for Heading */
.account-info-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
    background: linear-gradient(135deg, #3E2723, #FFD700);
    padding: 10px;
    border-radius: 8px;
}

/* Account Details Styling */
.account-info-details {
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    color: white;
}

/* Unique Styling for Span Elements */
.account-info-details span {
    font-weight: bold;
    color:rgb(70, 60, 2); /* Gold Color */
    text-transform: uppercase;
    display: inline-block;
    width: 280px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-info-container {
        padding: 20px;
        max-width: 90%;
    }
}