#account-creation-form {
  width: 75%;
  flex-wrap: wrap;
  display: flex;
  margin: auto;
  column-gap: 5%;
  justify-content: flex-start;
}

#account-creation-form > div {
    width: 47%;
    display: flex;
    flex-direction: column;
    margin: 0px 0 25px 0;
}

#account-creation-form  label {
  margin: 0px 0 5px 0;
  font-weight: bold;
}

select {
  background-color: white;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  overflow: auto;
  background-color: white;
  border: 1px solid black;
  z-index: 10;
  display: none;
}

.suggestion {
  display: block;
  cursor: pointer;
  padding: 10px 25px 10px 20px;
  color: black;
  text-decoration: none;
}

.suggestion:hover {
  background-color: lightgray;
}

#password-input {
  position: absolute;
  left: 90%;
  top: 21%;
  padding: 0px;
  margin-right: 1em;
}

.button {
  display: block;
  margin: 1em 0px 1em 0px;
}

.button button {
  &[type="submit"] {
    background-color: var(--totem-color-highlight-color);
    color: var(--totem-color-text-on-highlight);
    font-size: 16px;
    border-radius: 25px;
    border: none;
    padding: 1em;
  }

  &[type="reset"] {
    background-color: white;
    border: none;

    & svg {
      margin: 5px;
    }
  }
}
.confirm-password-warning, .confirm-email-warning , .required-field-warning{
  color: red;
  font-size: small;
}

.new-password-warning {
  font-size: 0.875rem;
  width: 100%;
}

#password_container input{
  width: 100%;
}

#account-creation-form > div.phone-input {
  flex-direction: row;
  justify-content: space-between;
  align-items: end;

  & input {
    width: 100%;
  }
}

#account-creation-form > div.phone-input > div:first-child {
  width: 65%;
}

#account-creation-form > div.phone-input > div:nth-child(2) {
  width: 30%;
}

.primary-phone .required-field-warning {
  position: absolute;
}

@media (max-width: 769px) {
  #account-creation-form {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
  }

  #account-creation-form > div {
    width: 100%;
  }
}

@media (max-width: 362px) {
  #account-creation-form > div.phone-input {
    flex-direction: column;
  }

  #account-creation-form > div.phone-input > div:first-child {
    width: 100%;
  }

  #account-creation-form > div.phone-input > div:nth-child(2) {
    width: 100%;
  }
}