@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Orbitron:wght@600;700&display=swap');

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

body.register-body {
  font-family:'Poppins',sans-serif;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:
    radial-gradient(circle at top left,#00c6ff33,transparent 40%),
    radial-gradient(circle at bottom right,#ff00cc22,transparent 35%),
    linear-gradient(180deg,#05070d,#0a1020);
  padding:20px;
}

/* 🔥 Sleeker container */
.register-container {
  max-width:380px; /* reduced from 420px */
  width:100%;
  padding:30px 24px;
  border-radius:25px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 20px 50px rgba(0,0,0,.55),
    0 0 40px rgba(0,198,255,.25);
  animation:fadeIn 1s ease;
  z-index:2;
}

@keyframes fadeIn {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}

.login-logo .site-name {
  display:block;
  text-align:center;
  font-size:28px;
  font-weight:900;
  font-family:'Orbitron',sans-serif;
  background:linear-gradient(90deg,#00c6ff,#ff00cc,#ff8c00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 25px rgba(0,198,255,.6);
  margin-bottom:20px;
  animation:glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  from { text-shadow:0 0 15px #00c6ff,0 0 30px #ff00cc; }
  to   { text-shadow:0 0 30px #ff8c00,0 0 60px #00c6ff; }
}

.register-title {
  text-align:center;
  font-size:22px;
  font-weight:700;
  color:#fff;
  margin-bottom:25px;
  letter-spacing:1px;
}

.form-group { margin-bottom:16px; }

.form-group label {
  display:block;
  margin-bottom:6px;
  font-size:14px;
  font-weight:600;
  color:#e0e0e0;
}

.form-group input {
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:15px;
  transition:.3s;
}

.form-group input:focus {
  outline:none;
  border-color:#00c6ff;
  box-shadow:0 0 12px rgba(0,198,255,.4);
}

/* 🚀 Attractive button */
.register-button {
  width:100%;
  margin-top:15px;
  padding:12px;
  border:none;
  border-radius:20px;
  cursor:pointer;
  font-size:15px;
  font-weight:700;
  background:linear-gradient(135deg,#ff00cc,#ff8c00,#00c6ff);
  color:#fff;
  transition:.35s;
  box-shadow:0 10px 20px rgba(255,0,204,.35);
}

.register-button:hover {
  transform:translateY(-3px);
  background:linear-gradient(135deg,#00c6ff,#00ffcc,#ff00cc);
  color:#05070d;
  box-shadow:0 12px 28px rgba(0,198,255,.45);
}

.auth-switch {
  text-align:center;
  margin-top:18px;
  font-size:13px;
  color:#ccc;
}

.auth-switch a {
  color:#00c6ff;
  font-weight:600;
  text-decoration:none;
}

.auth-switch a:hover { color:#ff00cc; }

.error-box {
  background:rgba(220,20,60,.15);
  color:#ff8e8e;
  border:1px solid rgba(220,20,60,.35);
  border-radius:10px;
  padding:10px;
  margin-bottom:18px;
}

/* 📱 Responsive */
@media(max-width:768px){
  .register-container { max-width:80%; padding:26px 18px; }
  .login-logo .site-name { font-size:24px; }
}

@media(max-width:480px){
  .register-container { max-width:85%; padding:22px 14px; }
  .login-logo .site-name { font-size:20px; }
  .form-group input, .register-button { font-size:13px; padding:10px; }
}
