#site-root {
  visibility: hidden;
}

.account-page {
  padding: 0 0 16px;
}

.account-page-hero {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 11px;
  padding: 13px 16px;
  border: 1px solid #aebc87;
  border-radius: 4px;
  background: linear-gradient(135deg, #edffd1, #fffbd8 48%, #e9f2c4);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .42);
}

.account-page-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid #7eaa73;
  border-radius: 50%;
  background: radial-gradient(circle, #fffbd8 0 42%, #d9efaa 43% 100%);
  color: #d2761d;
  font-size: 25px;
  line-height: 1;
  text-shadow: 1px 1px #fff;
}

.account-page-kicker {
  margin: 0 0 2px;
  color: #d05a10;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.account-page-hero h1 {
  margin: 0;
  color: #336600;
  font-size: 21px;
  line-height: 1.12;
  text-shadow: 1px 1px #fff;
}

.account-page-hero-copy {
  max-width: 620px;
  margin: 4px 0 0;
  color: #4b6546;
}

.register-panel {
  position: relative;
  padding: 0 15px 16px;
  border: 1px solid #aebc87;
  border-radius: 4px;
  background: linear-gradient(135deg, #fffbd8, #f5eeba 52%, #edf5c8);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .35);
}

.register-panel-rivet {
  display: none;
}

.register-panel-heading {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 -15px 13px;
  padding: 0 12px;
  border-bottom: 1px solid #c49b49;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#f4e69f, #e2c66c);
  color: #666600;
}

.register-panel-heading h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 1px 1px #fff;
}

.register-rule {
  width: 42px;
  height: 1px;
  background: #d2761d;
  opacity: .72;
}

.register-intro {
  max-width: 680px;
  margin: 0 auto 15px;
  color: #385642;
  line-height: 1.45;
}

.register-label {
  display: block;
  margin: 11px 0 4px;
  color: #336600;
  font-size: 12px;
  font-weight: bold;
}

.register-input {
  display: block;
  width: 100%;
  min-height: 31px;
  padding: 6px 8px;
  border: 1px solid #7d9d65;
  border-radius: 4px;
  outline: none;
  background: #fffef0;
  color: #243328;
  font-size: 12px;
}

.register-input:focus {
  border-color: #d05a10;
  box-shadow: 0 0 0 2px rgba(208, 90, 16, .18);
}

.register-input[readonly] {
  border-color: #b5bd93;
  background: #f3f0cf;
  color: #596947;
}

.register-help {
  margin: 3px 0 8px;
  color: #596947;
  font-size: 10px;
}

.register-password-row,
.bug-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.register-password-row .register-label {
  margin-top: 0;
}

.register-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.register-actions button,
.register-back {
  display: inline-block;
  min-height: 32px;
  padding: 6px 15px;
  border: 1px solid #d38428;
  border-radius: 10px;
  background: linear-gradient(#fff6bf, #e7d46d);
  color: #805300;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px #fff;
}

.register-actions button:hover,
.register-actions button:focus-visible,
.register-back:hover,
.register-back:focus-visible {
  border-color: #398d43;
  background: #e8f9ba;
  color: #006633;
  text-decoration: none;
}

.register-actions button:disabled {
  cursor: wait;
  opacity: .65;
}

.register-message {
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid #d38428;
  border-radius: 4px;
  background: #fffbd8;
  color: #805300;
  font-weight: bold;
  line-height: 1.45;
}

.register-message[hidden] {
  display: none;
}

#register-website,
#bug-website {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.bug-report-panel {
  padding-bottom: 18px;
}

.bug-report-panel .register-intro {
  max-width: none;
}

.bug-textarea {
  min-height: 92px;
  resize: vertical;
}

@media (max-width: 620px) {
  .account-page-hero {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 9px;
    padding: 11px;
  }

  .account-page-mark {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .account-page-hero h1 {
    font-size: 18px;
  }

  .register-panel {
    padding-right: 10px;
    padding-left: 10px;
  }

  .register-panel-heading {
    margin-right: -10px;
    margin-left: -10px;
  }

  .register-password-row,
  .bug-report-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 440px) {
  .account-page-hero-copy {
    font-size: 11px;
  }

  .register-panel-heading {
    gap: 6px;
  }

  .register-rule {
    width: 22px;
  }
}
