* { font-family: 'Outfit', sans-serif; margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; width: 100%; }
body { overflow: hidden; background: #050816; color: white; }
#app { height: 100%; width: 100%; display: flex; flex-direction: column; }
main { flex: 1; overflow-y: auto; overflow-x: hidden; }
.card-hover { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0, 148, 211, 0.15); }
.modal-enter { animation: slideUp 0.3s ease forwards; }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s ease forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }
.auth-container {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 30px;
background: radial-gradient(circle at top right, rgba(0,212,255,0.15), transparent 30%), radial-gradient(circle at bottom left, rgba(0,148,211,0.12), transparent 30%), #050816;
}
.auth-card {
width: 100%;
max-width: 450px;
background: rgba(15, 23, 42, 0.9);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 24px;
padding: 40px;
backdrop-filter: blur(20px);
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.logo-glow {
width: 80px;
height: 80px;
margin: 0 auto 20px;
border-radius: 50%;
background: linear-gradient(135deg, #0094d3 0%, #00d4ff 100%);
box-shadow: 0 0 40px rgba(0,212,255,0.5);
}
h1 { text-align: center; font-size: 38px; margin-bottom: 10px; }
.subtitle { text-align: center; color: #9ca3af; margin-bottom: 30px; }
.input-field { width: 100%; padding: 16px; margin-bottom: 18px; border-radius: 14px; border: 1px solid #1f2937; background: rgba(255,255,255,0.04); color: white; outline: none; transition: all 0.2s ease; }
.input-field:focus { border-color: #0094d3; box-shadow: 0 0 0 3px rgba(0, 148, 211, 0.1); }
.btn-primary { width: 100%; padding: 16px; border: none; border-radius: 14px; background: linear-gradient(135deg, #0094d3 0%, #00d4ff 100%); color: white; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 148, 211, 0.3); }
.progress-bar { height: 6px; background: #1f2937; border-radius: 3px; overflow: hidden; margin-bottom: 25px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #0094d3, #00d4ff); }
.step-wrapper { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.step-indicator { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-weight: 600; }
.step-active { background: linear-gradient(135deg, #0094d3 0%, #00d4ff 100%); color: white; }
.step-completed { background: #10b981; color: white; }
.step-inactive { background: #1f2937; color: #9ca3af; }
.switch-text { margin-top: 25px; text-align: center; color: #9ca3af; }
.switch-text a { color: #00d4ff; text-decoration: none; font-weight: 600; }
.success-text { text-align: center; color: #10b981; font-size: 20px; margin-bottom: 20px; }
.badge { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; margin: 0 auto 30px; }
.badge-success { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.logout-btn { margin-top: 20px; }
.otp-field { text-align: center; letter-spacing: 8px; font-size: 24px; }
@media(max-width: 600px) {
.auth-card { padding: 30px; }
h1 { font-size: 30px; }
}