body { margin: 0; padding: 0; height: 100%; background: white; backdrop-filter: blur(10px); } .loading-container { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; background-color: #f7f9fc; } .spinner { border: 8px solid #f3f3f3; border-top: 8px solid #1e90ff; border-radius: 50%; width: 60px; height: 60px; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .loading-container p { margin-top: 20px; font-size: 18px; color: #2c3e50; font-weight: 500; }