/**
Styles for the password reset (one-time login) screen.
**/

.user-reset-screen #content {
  box-sizing: border-box;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.user-reset-screen .user-pass-reset {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-reset-screen .user-pass-reset p {
  margin: 0 0 8rem;
  color: var(--text-color);
  max-width: 520px;
}

/* Login button, same look as the green .continue-btn CTAs. The submit is an
   <input>, which can't render the ::before/::after layers continue-btn uses,
   so the border/green fill are applied directly. */
.user-reset-screen .form-submit {
  height: 48rem;
  padding: 0 24rem;
  margin-top: 40rem;
  width: fit-content;
  font-family: inherit;
  font-size: 16rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--title-color);
  background: transparent;
  border: 1rem solid rgba(255, 255, 255, 0.2);
  border-radius: 8rem;
  cursor: pointer;
  transition: background-color 1s var(--curve), border-color 1s var(--curve),
    color 1s var(--curve);
}

.user-reset-screen .form-submit:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

@media (max-width: 1280px) {
  .user-reset-screen .form-submit {
    height: 48px;
    padding: 0 24px;
    margin-top: 40px;
    font-size: 16px;
  }
  .user-reset-screen .user-pass-reset p {
    margin-bottom: 8px;
  }
}
