:root {
  --reset-primary: #2563eb;
  --reset-secondary: #64748b;
  --reset-surface: #ffffff;
  --reset-border: #e2e8f0;
  --reset-text: #0f172a;
  --reset-bg: #f8fafc;
  --reset-success: #10b981;
}

.reset-pass-page {
  height: 100vh;
  overflow-y: auto;

  padding: 24px;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  background: var(--reset-bg);
}

.reset-pass-card {
  width: 100%;
  max-width: 520px;
  margin-top: 24px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}

.reset-pass-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: var(--reset-success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 34px;
}

.reset-pass-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--reset-text);
  margin-bottom: 10px;
}

.reset-pass-subtitle {
  text-align: center;
  color: var(--reset-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.reset-pass-token-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #eff6ff;
  color: #2563eb;
  margin-bottom: 24px;
}

.reset-pass-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reset-pass-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reset-pass-label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.reset-pass-input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--reset-border);
  border-radius: 18px;
  padding: 0 18px;
  font-size: 15px;
  background: #f8fafc;
  outline: none;
  transition: 0.2s ease;
  box-sizing: border-box;
}

.reset-pass-input:focus {
  border-color: var(--reset-success);
  background: white;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.reset-pass-strength {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reset-pass-strength-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.reset-pass-strength-bar {
  height: 12px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.reset-pass-strength-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  transition: 0.3s ease;
}

.reset-pass-btn {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  font-size: 15px;
}

.reset-pass-password-wrapper {
  position: relative !important;
  width: 100% !important;
}

.reset-pass-password-wrapper .reset-pass-input {
  padding-right: 52px;
}

.reset-pass-password-toggle {
  position: absolute !important;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  color: #64748b;
  font-size: 18px;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.reset-pass-password-toggle:hover {
  color: #0f172a;
}

.reset-pass-password-policy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.reset-pass-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
}

.reset-pass-rule i {
  font-size: 14px;
}

.reset-pass-rule.valid {
  color: #10b981;
  font-weight: 600;
}

.reset-pass-rule.valid i::before {
  content: '\f26a';
}
