/* ============================================================
   Muntiji Visual Identity Kernel
   Accounts R3.2 — Recovery Surface
   ============================================================ */

.recovery-page{
  width:100%;
}

.recovery-card{
  width:100%;
  max-width:446px;
  margin-inline:auto;
}

.recovery-head{
  margin-bottom:22px;
}

.recovery-kicker{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-bottom:11px;
  padding:7px 11px;
  border:1px solid #dce4f1;
  border-radius:999px;
  background:#f7f9fd;
  color:#3159e8;
  font-size:11px;
  font-weight:800;
}

.recovery-head h1{
  margin:0;
  color:#172033;
  font-size:31px;
  line-height:1.25;
  letter-spacing:-.4px;
}

.recovery-head p{
  margin:8px 0 0;
  color:#657086;
  font-size:13px;
  line-height:1.85;
}

.recovery-alert{
  margin-bottom:16px;
  padding:12px 14px;
  border:1px solid #dce4f1;
  border-radius:13px;
  font-size:12px;
  line-height:1.75;
}

.recovery-alert.error{
  border-color:#fecaca;
  background:#fff7f7;
  color:#991b1b;
}

.recovery-alert.success{
  border-color:#bbf7d0;
  background:#f5fff8;
  color:#166534;
}

.recovery-field{
  margin-bottom:15px;
}

.recovery-field label{
  display:block;
  margin-bottom:7px;
  color:#273247;
  font-size:12px;
  font-weight:800;
}

.recovery-input{
  box-sizing:border-box;
  width:100%;
  height:50px;
  padding:0 15px;
  border:1px solid #d4ddeb;
  border-radius:13px;
  outline:none;
  background:#fff;
  color:#172033;
  font:inherit;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.recovery-input::placeholder{
  color:#929db0;
}

.recovery-input:hover{
  border-color:#bdc9da;
}

.recovery-input:focus{
  border-color:#3159e8;
  box-shadow:0 0 0 4px rgba(49,89,232,.10);
}

.recovery-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:48px;
  padding:10px 18px;
  border:0;
  border-radius:13px;
  background:linear-gradient(135deg,#3159e8,#4771f2);
  box-shadow:0 9px 22px rgba(49,89,232,.18);
  color:#fff;
  font:inherit;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.recovery-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 27px rgba(49,89,232,.23);
}

.recovery-links{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 15px;
  margin-top:18px;
  padding-top:15px;
  border-top:1px solid #e5eaf2;
  font-size:11px;
}

.recovery-links a{
  color:#3159e8;
  font-weight:800;
  text-decoration:none;
}

.recovery-links a:hover{
  text-decoration:underline;
}

.recovery-note{
  margin-top:15px;
  color:#657086;
  font-size:11px;
  line-height:1.8;
  text-align:center;
}

@media(max-width:640px){
  .recovery-head h1{
    font-size:27px;
  }

  .recovery-head{
    margin-bottom:18px;
  }

  .recovery-input{
    height:48px;
  }
}

@media(prefers-reduced-motion:reduce){
  .recovery-input,
  .recovery-btn{
    transition:none;
  }

  .recovery-btn:hover{
    transform:none;
  }
}
