*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  background-color: #e6ddd0;
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.card {
  width: 100%;
  max-width: 480px;
  background: #f8f4ec;
  border: 1px solid #ded3c4;
  border-radius: 24px;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 20px 28px 16px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  background: #221e1b;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #221e1b;
}

.state-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.state-icon.success { background: #cf6a3a; }
.state-icon.error   { background: #ded3c4; }

.state-body {
  padding: 16px 32px 32px;
}

.state-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.state-tag.success { color: #cf6a3a; }
.state-tag.error   { color: #8a7d6e; }

.state-title {
  font-family: 'Bricolage Grotesque', 'Hanken Grotesk', Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #221e1b;
  margin-bottom: 12px;
}

.state-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5044;
}

.open-app-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.15s;
}
.open-app-btn--orange         { background: #cf6a3a; color: #fbf7f0; }
.open-app-btn--orange:hover   { background: #b95a2f; }
.open-app-btn--dark           { background: #221e1b; color: #f6f1e8; }
.open-app-btn--dark:hover     { background: #3a342d; }

.divider {
  height: 1px;
  background: #e7ddce;
  margin: 28px 0 24px;
}

.features {
  background: #f1ebe0;
  border: 1px solid #e0d5c5;
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 24px;
}

.features-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: #8a7d6e;
  margin-bottom: 12px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: #221e1b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #221e1b;
}

.feature-text span {
  font-size: 12.5px;
  color: #6a6053;
}

/* Reset password form */
.hero {
  background: #221e1b;
  padding: 28px 32px 26px;
}

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #cf6a3a;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Bricolage Grotesque', 'Hanken Grotesk', Arial, sans-serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  color: #f6f1e8;
}

.form-body {
  padding: 32px 32px 28px;
}

.label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #3a342d;
  margin-bottom: 8px;
}

.input {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1.5px solid #ded3c4;
  border-radius: 12px;
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  font-size: 15px;
  color: #221e1b;
  outline: none;
  transition: border-color 0.15s;
}
.input:focus { border-color: #cf6a3a; }

.field { margin-bottom: 16px; }

.btn {
  display: block;
  width: 100%;
  padding: 15px 24px;
  background: #cf6a3a;
  border: none;
  border-radius: 14px;
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fbf7f0;
  cursor: pointer;
  margin-top: 24px;
  transition: background-color 0.15s;
}
.btn:hover { background: #b95a2f; }

.error-box {
  background: #fdf0ec;
  border: 1px solid #f5c6b4;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #9b3a20;
  margin-bottom: 20px;
}

.footer {
  padding: 20px 28px 24px;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: #a99a87;
}
