/* ===============================
   EarVu Recover — Clean
   =============================== */

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

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

/* Card */

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

/* Title */

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

/* Intro */

.earvu-recover-intro {
  text-align: center;
  font-size: .85em;
  opacity: .7;
  margin-bottom: 22px;
  line-height: 1.4;
}

/* Form */

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

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

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

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

/* Button */

.earvu-recover-card button {
  margin-top: 26px;
  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-recover-footer,
.earvu-recover-back {
  margin-top: 16px;
  text-align: center;
  font-size: .85em;
}

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

/* Dark */

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

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

body.dark-mode .earvu-recover-intro {
  opacity: .8;
}

/* Anim */

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