:root {
  --zp-black: #000000;
  --zp-charcoal: #393B3B;
  --zp-orange: #EB713A;
  --zp-soft-teal: #BED8D6;
  --zp-light-aqua: #D8EFED;
  --zp-mist: #F9FCF9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  background: transparent;
  color: var(--zp-black);
}

.widget-shell {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 22px;
  background: var(--zp-mist);
  border: 1px solid var(--zp-soft-teal);
  border-radius: 12px;
}

.widget-accent {
  width: 44px;
  height: 4px;
  margin-bottom: 14px;
  background: var(--zp-orange);
  border-radius: 4px;
}

.widget-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--zp-black);
}

.widget-helper {
  margin: 7px 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--zp-charcoal);
}

.field-label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--zp-black);
}

.passcode-input {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1.5px solid var(--zp-charcoal);
  border-radius: 8px;
  background: #ffffff;
  color: var(--zp-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.passcode-input::placeholder {
  color: #757575;
}

.passcode-input:focus {
  border-color: var(--zp-orange);
  box-shadow: 0 0 0 3px rgba(235, 113, 58, 0.14);
}

.verify-button {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  padding: 11px 16px;
  border: 2px solid var(--zp-orange);
  border-radius: 8px;
  background: var(--zp-black);
  color: var(--zp-mist);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.05s ease;
}

.verify-button:hover {
  background: var(--zp-charcoal);
}

.verify-button:focus {
  outline: 3px solid rgba(235, 113, 58, 0.3);
  outline-offset: 2px;
}

.verify-button:active {
  transform: translateY(1px);
}

.verify-button:disabled {
  opacity: 0.75;
  cursor: wait;
}

.status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.status-success {
  display: block;
  background: var(--zp-light-aqua);
  border-left: 4px solid var(--zp-black);
  color: var(--zp-black);
}

.status-error {
  display: block;
  background: #ffffff;
  border-left: 4px solid var(--zp-orange);
  color: var(--zp-charcoal);
}

.status-title {
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}

@media (max-width: 480px) {
  body {
    padding: 6px;
  }

  .widget-shell {
    padding: 18px;
  }
}