body { font-family: 'Arial', sans-serif; background: #1a1a2e; color: white; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; overflow: hidden; }
.card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 30px; border-radius: 15px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); animation: slideUp 0.8s ease-out; width: 350px; text-align: center; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
input { width: 90%; padding: 10px; margin: 10px 0; border: none; border-radius: 5px; }
button { width: 100%; padding: 10px; background: #e94560; color: white; border: none; border-radius: 5px; cursor: pointer; transition: 0.3s; }
button:hover { background: #0f3460; transform: scale(1.05); }
table { width: 100%; color: white; border-collapse: collapse; margin-top: 20px; }
th, td { padding: 10px; border: 1px solid rgba(255,255,255,0.2); }