:root {
  --register-helper-font-size: 13px;
  --register-body-font-size: 14px;
}
#register-form-full-name-input {
  gap: 17px;
}
#register-form-full-name-input,
.register-form-field {
  display: flex;
  flex-direction: column;
}
.register-form-field {
  gap: 7px;
}
.register-form-field[hidden] {
  display: none;
}
.register-form-field label {
  color: #303036;
  cursor: default;
  font-family: var(--register-font-family);
  font-size: var(--register-helper-font-size);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.register-form-field input {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d9dce1;
  border-radius: 0;
  caret-color: #111114;
  color: #111114;
  cursor: text;
  display: block;
  font-family: var(--register-font-family);
  font-size: var(--register-body-font-size);
  font-weight: 400;
  height: 46px;
  letter-spacing: 0;
  line-height: normal;
  min-height: 46px;
  outline: none;
  padding: 10px 0;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.15s ease;
}
.register-form-field input:focus,
.register-form-field:focus-within input {
  border-bottom-color: #303034;
}
.register-form-field input::placeholder {
  color: #8a919b;
  opacity: 1;
}
.register-container {
  position: relative;
}
.register-container input {
  padding-right: 36px;
}
.register-container button {
  background: transparent;
  border: 0;
  color: #6b7280;
  cursor: pointer;
  display: grid;
  height: 30px;
  padding: 0;
  place-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}
.register-container svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 19px;
}
.register-container button:hover {
  color: #111114;
}
.register-container .register-svg-hi {
  display: none;
}
.register-container button[aria-pressed="true"] .register-svg-18-18-10 {
  display: none;
}
.register-container button[aria-pressed="true"] .register-svg-hi {
  display: block;
}
