
/* Mentor Reset Password - premium UI aligned with mentor registration */

.crpp-container {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.crpp-card {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 18px;
}

/* Titles */
.crpp-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

/* Labels & helper text */
.crpp-card label {
  display: block;
  margin-bottom: 16px;
}

.crpp-card label span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 6px;
}

/* Inputs – pill style like registration form */
.crpp-card input[type="email"],
.crpp-card input[type="password"],
.crpp-card input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #CBD5E1;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.crpp-card input::placeholder {
  color: #9CA3AF;
}

.crpp-card input:focus {
  border-color: #008AFC;
  box-shadow: 0 0 0 1px rgba(0,138,252,0.18);
  background-color: #F9FAFB;
}

/* OTP + resend column layout */
.crpp-two-col {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.crpp-two-col .crpp-link {
  white-space: nowrap;
}

/* Primary button – orange outline pill like "Next" */
.crpp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #FF6F00;
  background-color: #FFFFFF;
  color: #FF6F00;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .12s ease;
}

.crpp-btn:hover {
  background-color: #FF6F00;
  color: #FFFFFF;
  box-shadow: 0 12px 24px rgba(255,111,0,0.32);
  transform: translateY(-1px);
}

.crpp-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(15,23,42,0.16);
}

/* Link-style secondary button */
.crpp-link {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #0F172A;
  text-decoration: underline;
  cursor: pointer;
}

/* Help text */
.crpp-help {
  font-size: 12px;
  color: #6B7280;
  margin-top: 6px;
}

/* Alert messages */
.crpp-alert {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  background-color: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

/* Actions row */
.crpp-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 767px) {
  .crpp-container {
    max-width: 100%;
  }
  .crpp-two-col {
    flex-direction: column;
    align-items: stretch;
  }
}


.crpp-note{display:block;margin-top:6px;font-size:12px;opacity:.85;}



/* Password show/hide */
.crpp-passwrap{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.crpp-passwrap input{
  flex: 1;
}
.crpp-toggle{
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.crpp-toggle:active{
  transform: translateY(1px);
}
