* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { 
    /* লগইন পেজের সাথে মিল রেখে সফট গ্রে/ব্লুইশ ব্যাকগ্রাউন্ড */
    background: #e6ecf5; 
    color: #2d3748; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* নিউমরফিক সফট শ্যাডো কার্ড */
.loading-card {
    background: #e6ecf5;
    padding: 45px 35px;
    border-radius: 30px;
    box-shadow: 12px 12px 24px #c5cbdb, 
               -12px -12px 24px #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 85%;
    max-width: 340px;
}

/* গোলাকার নিউমরফিক আইকন হোল্ডার */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e6ecf5;
    box-shadow: 8px 8px 16px #c5cbdb, 
               -8px -8px 16px #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ম্যাচিং স্পিনার অ্যানিমেশন */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e6ecf5;
    border-top: 4px solid #2b3648;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2b3648;
}

.sub-text {
    font-size: 0.85rem;
    color: #718096;
    margin-top: -10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
