/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 05 2026 | 07:22:33 */
.toko-reset-page {
  --toko-orange: #ff5b1e;
  --toko-orange-soft: #ff8a5c;
  --toko-text: #1f2937;
  --toko-muted: #667085;

  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 100vh;
  margin-left: -50vw;
  padding: clamp(10px, 4vw, 18px);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.toko-reset-page * {
  box-sizing: border-box;
}

.toko-reset-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #fff7f1 0%, #ffffff 34%, #ffffff 100%);
}

.toko-reset-bg::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: min(520px, 120vw);
  height: min(520px, 120vw);
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.14);
  filter: blur(80px);
}

.toko-reset-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  background: #ffffff;
  border: 1px solid rgba(255, 107, 53, 0.08);
  border-radius: clamp(24px, 7vw, 30px);
  box-shadow:
    0 24px 70px rgba(31, 41, 55, 0.09),
    0 8px 22px rgba(255, 91, 30, 0.035);
  padding: clamp(22px, 6vw, 30px) clamp(18px, 5vw, 26px);
  text-align: center;
}

.toko-reset-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(18px, 5vw, 24px);
}

.toko-reset-logo {
  width: clamp(138px, 42vw, 178px);
  height: auto;
  display: block;
  object-fit: contain;
}

.toko-reset-state,
#toko-reset-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.toko-hidden {
  display: none !important;
}

.toko-reset-card h1 {
  margin: 8px 0 8px;
  color: var(--toko-text);
  font-size: clamp(25px, 7.6vw, 34px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -1.1px;
}

.toko-reset-card p {
  margin: clamp(12px, 4vw, 16px) 0 0;
  color: var(--toko-muted);
  font-size: clamp(14px, 3.8vw, 15px);
  line-height: 1.58;
}

.toko-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.toko-input-wrap {
  position: relative;
  width: 100%;
}

.toko-reset-card input {
  width: 100%;
  border: 1px solid rgba(255, 107, 53, 0.14);
  background: #fffaf7;
  border-radius: 16px;
  padding: 15px 46px 15px 15px;
  color: #111827;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.toko-reset-card input:focus {
  border-color: var(--toko-orange);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.toko-input-error-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.toko-input-wrap-invalid .toko-input-error-icon {
  opacity: 1;
}

.toko-reset-card input.toko-input-invalid {
  border-color: #dc2626;
  background: #fff7f7;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.toko-field-error {
  margin: -2px 0 2px !important;
  color: #dc2626 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  text-align: left;
  font-weight: 700;
}

.toko-button {
  width: 100%;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff5b1e, #ff8a5c);
  color: #ffffff;
  padding: 15px 18px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    opacity 0.2s ease;
}

.toko-button:hover {
  transform: translateY(-1px);
}

/* 👇 effet clic */
.toko-button:active {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 91, 30, 0.35);
}

.toko-button:active {
  transform: translateY(0);
  opacity: 0.92;
}

.toko-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.toko-button-secondary {
  background: #ffffff;
  color: var(--toko-orange);
  border: 1px solid rgba(255, 107, 53, 0.25);
  box-shadow: none;
}

.toko-icon {
  width: clamp(54px, 15vw, 72px);
  height: clamp(54px, 15vw, 72px);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(12px, 4vw, 17px);
}

.toko-icon-success {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.12);
  font-size: 32px;
  font-weight: 900;
}

.toko-icon-error {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  font-size: 32px;
  font-weight: 900;
}

.toko-error {
  margin: 14px 0 0 !important;
  color: #dc2626 !important;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.14);
  border-radius: 14px;
  padding: 11px 13px;
  text-align: left;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.toko-loader {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(255, 107, 53, 0.18);
  border-top-color: var(--toko-orange);
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: toko-spin 0.8s linear infinite;
}

@keyframes toko-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 520px) {
  .toko-reset-page {
    padding: 18px 14px;
    align-items: flex-start;
  }

  .toko-reset-card {
    margin-top: 24px;
    padding: 26px 20px 22px;
  }
}

@media (max-height: 620px) {
  .toko-reset-page {
    align-items: flex-start;
    overflow-y: auto;
  }

  .toko-reset-card {
    margin: auto 0;
  }
}