 * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'IBM Plex Sans', sans-serif; background: linear-gradient(135deg, #00bd76, #28b385); display: flex; align-items: center; justify-content: center; height: 100vh; } .login-container { background: white; padding: 40px; border-radius: 12px; width: 100%; max-width: 350px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2); } .login-icon { width: 70px; height: 70px; background: #5ed5a8; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; } input { width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ddd; border-radius: 8px; } button { width: 100%; padding: 12px; background: #00bd76; color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: bold; } 