/* ===============================
   EarVu Register — Clean
   =============================== */

.earvu-register-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.earvu-register {
  width: 100%;
  max-width: 480px;
  padding: 80px 20px 40px;
}

/* Card */

.earvu-register-card {
  background: linear-gradient(160deg,#ffffffee,#f4f6f9ee);
  border-radius: 20px;
  padding: 36px 34px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  animation: earvuFade .4s ease;
}

/* Title */

.earvu-register-card h2 {
  text-align: center;
  margin-bottom: 26px;
  font-weight: 600;
  color: var(--c-primary);
}

/* Form */

.earvu-register-card form {
  display: flex;
  flex-direction: column;
}

.earvu-register-card label {
  margin-top: 18px;
  font-weight: 500;
  font-size: .9em;
}

.earvu-register-card small {
  font-size: .75em;
  opacity: .7;
  margin-bottom: 6px;
}

.earvu-register-card input {
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
}

.earvu-register-card input:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 2px rgba(80,130,255,.25);
}

/* Button */

.earvu-register-card button {
  margin-top: 28px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg,var(--c-primary),#6aa6ff);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(90,140,255,.4);
}

/* Footer */

.earvu-register-footer,
.earvu-register-back {
  margin-top: 16px;
  text-align: center;
  font-size: .85em;
}

.earvu-register-footer a {
  color: var(--c-primary);
  text-decoration: none;
}

/* Dark */

body.dark-mode .earvu-register-card {
  background: linear-gradient(160deg,#1c1e22,#121317);
}

body.dark-mode .earvu-register-card input {
  background: #222;
  color: #fff;
  border-color: #333;
}

/* Anim */

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