.button {
  padding: 0;
  font-size: 18px;
  line-height: 18px;
  border-radius: 100px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: auto;
  min-height: 50px;
  color: #ffffff;
  font-weight: 400;
  background-color: #ff574d;
  border: none;
  outline: none;
  box-shadow: none;
}
.button:hover {
  background-color: #ff7971;
}
.button.focus-visible {
  outline: 1px solid #1a1a1a;
}
.button:focus-visible {
  outline: 1px solid #1a1a1a;
}
.button:active {
  background-color: #a7352e;
}
.button[disabled],
.button--disabled {
  color: #c5c5c5;
  background-color: #e1e1e1;
  cursor: not-allowed;
}
.reset-button-style {
  border-radius: 0;
  display: inline-block;
  width: auto;
  color: black;
  font-weight: normal;
  vertical-align: middle;
  outline: none;
  background: transparent;
  box-shadow: none;
}
.togglable > :nth-child(n + 2) {
  display: none;
}
.togglable--active > :nth-child(1) {
  display: none;
}
.togglable--active > :nth-child(2) {
  display: block;
}
.level-indicator {
  margin-left: 0;
  margin-right: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 0;
  gap: 4px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: 4px;
}
.level-indicator__level {
  border-radius: 100px;
  flex: 1;
  height: 100%;
  background-color: #e1e1e1;
  transition: background-color 0.3s ease;
}
.level-indicator--weak :nth-child(1) {
  background-color: #ff574d;
}
.level-indicator--medium :nth-child(1) {
  background-color: #ff574d;
}
.level-indicator--medium :nth-child(2) {
  background-color: #e8af38;
}
.level-indicator--strong :nth-child(1) {
  background-color: #ff574d;
}
.level-indicator--strong :nth-child(2) {
  background-color: #e8af38;
}
.level-indicator--strong :nth-child(3) {
  background-color: #37b887;
}
.rounded-field,
.input-field {
  border-radius: 6px;
}
.rounded-field > :first-child,
.input-field > :first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.rounded-field > :last-child,
.input-field > :last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.input-field {
  display: flex;
  position: relative;
  color: #1a1a1a;
  border: 1px solid #e1e1e1;
}
.input-field__input {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
  line-height: 150%;
  flex: 1;
  height: 100%;
  border: none;
  color: currentColor;
  background-color: #ffffff;
}
.input-field__input::-webkit-input-placeholder {
  color: #aeaeae;
}
.input-field__input::-moz-placeholder {
  color: #aeaeae;
}
.input-field__input::placeholder {
  color: #aeaeae;
}
.input-field__input:first-child {
  padding-left: 16px;
}
.input-field__input::last-child {
  padding-right: 16px;
}
.input-field__icon {
  font-size: 18px;
  line-height: 18px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  color: #aeaeae;
  cursor: pointer;
}
.input-field__icon:hover {
  color: #8a8a8a;
}
.input-field__icon[focus-within],
.input-field__icon:active {
  color: #1a1a1a;
}
.input-field__icon:focus-within,
.input-field__icon:active {
  color: #1a1a1a;
}
.input-field:hover {
  border-color: #8a8a8a;
}
.input-field[focus-within] {
  border-color: #1a1a1a;
}
.input-field:focus-within {
  border-color: #1a1a1a;
}
.input-field--error {
  border-color: #d3463e;
}
.input-field--error:hover,
.input-field--error[focus-within] {
  border-color: #d3463e;
}
.input-field--error:hover,
.input-field--error:focus-within {
  border-color: #d3463e;
}
.select-field {
  position: relative;
  width: auto;
  min-height: 45px;
  color: #1a1a1a;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
}
.select-field__input {
  margin: 0;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  vertical-align: middle;
  border: none;
  color: currentColor;
  background-color: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.select-field__input::-webkit-input-placeholder {
  color: #aeaeae;
}
.select-field__input::-moz-placeholder {
  color: #aeaeae;
}
.select-field__input::placeholder {
  color: #aeaeae;
}
.select-field::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: #aeaeae;
  transform: translate(-16px, -50%) rotate(-45deg);
  pointer-events: none;
}
.select-field:hover {
  border-color: #8a8a8a;
}
.select-field:hover::after {
  border-color: #8a8a8a;
}
.select-field[focus-within] {
  border-color: #1a1a1a;
}
.select-field:focus-within {
  border-color: #1a1a1a;
}
.select-field[focus-within]::after {
  border-color: #1a1a1a;
}
.select-field:focus-within::after {
  border-color: #1a1a1a;
}
.select-field--empty {
  color: #aeaeae;
}
.select-field--error {
  border-color: #d3463e;
}
.select-field--error::after {
  border-color: #7c241f;
}
.select-field--error:hover,
.select-field--error[focus-within] {
  border-color: #d3463e;
}
.select-field--error:hover,
.select-field--error:focus-within {
  border-color: #d3463e;
}
.select-field--error:hover::after,
.select-field--error[focus-within]::after {
  border-color: #7c241f;
}
.select-field--error:hover::after,
.select-field--error:focus-within::after {
  border-color: #7c241f;
}
.checkbox-field {
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  display: flex;
  flex-flow: row nowrap;
  color: #595959;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-field__input {
  margin: 0;
  padding: 0;
  border-radius: 0;
  position: relative;
  width: 20px;
  height: 20px;
  color: currentColor;
  font-size: inherit;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.checkbox-field__input::before {
  border-radius: 2px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66%;
  height: 66%;
  background: #ffffff;
  border: 1px solid #aeaeae;
  translate: -50% -50%;
}
.checkbox-field__input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 4px;
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: #ffffff;
  transform-origin: center center;
  transform: translate(-50%, -50%) translateY(-40%) rotate(-45deg);
  opacity: 0;
}
.checkbox-field__input.focus-visible {
  outline: 1px solid #1a1a1a;
}
.checkbox-field__input:focus-visible {
  outline: 1px solid #1a1a1a;
}
.checkbox-field__input:checked::before {
  background-color: #ff574d;
  border-color: #ff574d;
  transition: background-color 0.25s, border-color 0.25s;
}
.checkbox-field__input:checked::after {
  opacity: 1;
  transition: opacity 0.25s;
}
.checkbox-field__text {
  font-size: 14px;
  line-height: 150%;
  flex: 1;
}
.checkbox-field:hover .checkbox-field__input::before {
  border-color: #8a8a8a;
}
.checkbox-field[focus-within] .checkbox-field__input::before,
.checkbox-field:active .checkbox-field__input::before {
  border-color: #1a1a1a;
}
.checkbox-field:focus-within .checkbox-field__input::before,
.checkbox-field:active .checkbox-field__input::before {
  border-color: #1a1a1a;
}
.checkbox-field--error {
  border: 1px solid #d3463e;
}

.top-bar {
  padding-left: 16px;
  padding-right: 16px;
  z-index: 999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #ff7971;
}
.top-bar a,
.top-bar button {
  font-size: 18px;
  line-height: 18px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
}
.content-holder {
  padding-top: 40px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #ffffff;
}
.content-holder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: none;
  opacity: 0;
}
.content-holder footer {
  margin-top: auto;
}
@media only screen and (min-width: 768px) {
  .content-holder {
    background-color: #122B3A;
    transition: background-color 0.4s ease-out;
  }
  .content-holder::before {
    background: url(https://s.plurk.com/plurktop/419c75b8ba0f73b4aa15.jpg) no-repeat fixed center center / cover;
    opacity: 0.45;
    transition: opacity 0.4s ease-out;
  }
}
.theme-modal {
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  position: relative;
  width: 100%;
  max-width: 540px;
  background-color: #ffffff;
  overflow: hidden;
}
.theme-modal a {
  color: #ff574d;
}
.theme-modal a:hover {
  color: #ff7971;
  text-decoration: underline;
  cursor: pointer;
}
.theme-modal a.focus-visible {
  outline: 1px solid #1a1a1a;
  outline-offset: 4px;
}
.theme-modal a:focus-visible {
  outline: 1px solid #1a1a1a;
  outline-offset: 4px;
}
.theme-modal a:active {
  color: #a7352e;
}
.theme-modal__header {
  margin-bottom: 24px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  min-height: 40px;
}
.theme-modal__header--align-center {
  justify-content: center;
}
.theme-modal__header--with-meaty {
  background: url(https://s.plurk.com/creatures/decorator/87f547ba32eb53309a66.png) no-repeat top right / 48px 40px;
}
.theme-modal__section ~ .theme-modal__section {
  margin-top: 16px;
}
.theme-modal__footer {
  margin-top: 24px;
}
.theme-modal__title {
  font-size: 20px;
  line-height: 120%;
  min-width: 0;
  color: #ff574d;
  overflow: hidden;
  word-wrap: break-word;
}
.theme-modal__actions {
  display: flex;
  justify-content: center;
}
.theme-modal__actions > * {
  flex: 1;
}
.theme-modal__actions .button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 768px) {
  .theme-modal {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 24px;
    margin-top: calc((100vh - 40px - 236px) * 0.2);
  }
  .theme-modal__title {
    font-size: 24px;
    line-height: 120%;
  }
}
.register-form__label {
  display: block;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 4px;
}
.register-form__password-info {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.register-form__password-info span {
  font-size: 14px;
  line-height: 150%;
  color: #595959;
}
.register-form__message {
  margin-top: 8px;
  font-size: 14px;
  line-height: 150%;
  color: #d3463e;
}
.register-form__suggestion {
  margin-top: 8px;
}
.register-form__suggestion-title {
  color: #595959;
}
.register-form__suggestion-list {
  margin-top: 4px;
  gap: 4px;
  display: flex;
  flex-flow: row wrap;
}
.register-form__suggestion-item {
  padding: 4px;
  font-size: 14px;
  line-height: 150%;
  border-radius: 4px;
  color: #595959;
  background-color: #f5f5f5;
}
.register-form__suggestion-item.focus-visible {
  outline: 1px solid #1a1a1a;
}
.register-form__suggestion-item:focus-visible {
  outline: 1px solid #1a1a1a;
}
.register-form__suggestion-item:hover {
  background-color: #e1e1e1;
  cursor: pointer;
}
.register-form__suggestion-item:active {
  background-color: #c5c5c5;
}
.register-form__birthday {
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
.register-form__birthday > .select-field {
  flex: 1;
}
.register-form__birthday.focus-visible {
  outline: none;
}
.register-form__birthday:focus-visible {
  outline: none;
}
.register-form__terms.focus-visible {
  outline: none;
}
.register-form__terms:focus-visible {
  outline: none;
}
.register-form__login-now {
  margin-top: 24px;
  font-size: 14px;
  line-height: 150%;
  color: #595959;
  text-align: center;
}
.register-form .checkbox-field ~ .checkbox-field {
  margin-top: 4px;
}
.level-indicator ~ .register-form__message {
  margin-top: 0;
}
.level-indicator--weak ~ .register-form__password-info span + span {
  color: #ff574d;
}
.level-indicator--medium ~ .register-form__password-info span + span {
  color: #e8af38;
}
.level-indicator--strong ~ .register-form__password-info span + span {
  color: #37b887;
}
.register-form .button[type="submit"] {
  position: relative;
  overflow: hidden;
}
.register-form .button[type="submit"] span:first-child {
  display: block;
  position: absolute;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}
.register-form .button[type="submit"] .spinner {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.register-form--loading .button[type="submit"] {
  background-color: #ff574d;
}
.register-form--loading .button[type="submit"] span:first-child {
  opacity: 0;
  transform: translateY(-10px);
}
.register-form--loading .button[type="submit"] .spinner {
  opacity: 1;
  transform: translateY(0);
}
.register-form .theme-modal__footer {
  margin-top: 32px;
}
.register-success {
  padding-top: 40px;
  display: none;
  max-width: 500px;
}
.register-success__welcome {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  background: url(https://s.plurk.com/creatures/decorator/6d4ce53f6e6538bdf2db.png) no-repeat center center / contain;
}
.register-success__description p {
  margin: 0;
  font-size: 14px;
  line-height: 150%;
  color: #595959;
}
.register-success__description p:first-child {
  font-size: 16px;
  line-height: 150%;
}
.register-success__description p ~ p {
  margin-top: 16px;
}
.register-success__description .register-success__resend-status {
  margin-top: 0;
  font-size: 14px;
  line-height: 150%;
  color: #37b887;
}
.register-success__resend {
  padding: 4px;
  border-radius: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ff574d;
  vertical-align: baseline;
  background-color: transparent;
}
.register-success__resend .resend-spinner {
  margin-left: 4px;
}
.register-success__resend:hover,
.register-success__resend:focus,
.register-success__resend.focus-visible,
.register-success__resend:active {
  background-color: transparent;
}
.register-success__resend:hover,
.register-success__resend:focus,
.register-success__resend:focus-visible,
.register-success__resend:active {
  background-color: transparent;
}
.register-success__resend:hover {
  color: #ff7971;
}
.register-success__resend.focus-visible {
  outline: 1px solid #1a1a1a;
}
.register-success__resend:focus-visible {
  outline: 1px solid #1a1a1a;
}
.register-success__resend:active {
  color: #a7352e;
}
@keyframes sending {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.register-success--resending .resend-spinner {
  transform-origin: 48% 48%;
  animation: sending 1s linear infinite;
}
.register-success--resending-error .register-success__resend-status {
  color: #d3463e;
}
@media only screen and (min-width: 768px) {
  .register-success {
    padding-top: 32px;
  }
}

