
.bg-white {
    background-color: var(--white);
}

.p-8 {
    padding: var(--space-xxl);
}

.rounded {
    border-radius: var(--radius-md);
}




.font-bold {
    font-weight: 700;
}

.mb-6 {
    margin-bottom: var(--space-xl);
}



.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: var(--space-sm);
}

/* Account Information Section */
.mb-6 p {
    margin-bottom: var(--space-sm);
    color: var(--text);
    line-height: 1.5;
}

.mb-6 p strong {
    color: var(--text);
    font-weight: 600;
    margin-right: var(--space-xs);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .p-8 {
        padding: var(--space-lg);
    }
    
    .text-2xl {
        font-size: var(--text-xl);
    }
    
    .text-xl {
        font-size: var(--text-lg);
    }
}

/* Verification status styling */
.mb-6 p:last-child {
    display: flex;
    align-items: center;
}

.mb-6 p:last-child::before {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-right: var(--space-xs);

}