.custom-auth-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.custom-auth-form .form-item {
  flex: 0 1 calc((100% - 30px) / 3);
  box-sizing: border-box;
}

.custom-auth-form .address-field {
  position: relative;
}

.custom-auth-form input {
  background-color: #F9F8F8;
  border: none !important;
  border-radius: 12px !important;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 14px;
  height: 45px;
}

.custom-auth-form .field-help {
  color: #00000066;
  font-size: 12px;
  margin: -8px 0 12px 5px;
}

.custom-auth-form .address-suggestions {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 48px;
  z-index: 20;
}

.custom-auth-form .address-suggestion {
  background: #fff;
  border: 0;
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 13px;
  line-height: 1.35;
  padding: 10px 12px;
  text-align: left;
  width: 100%;
}

.custom-auth-form .address-suggestion:hover,
.custom-auth-form .address-suggestion:focus {
  background: #F9F8F8;
  outline: none;
}

.custom-auth-form ::placeholder {
  color: #000;
  opacity: 1;
}

.custom-auth-form ::-ms-input-placeholder {
  color: #000;
}

.custom-auth-form .checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 5px;
}
.custom-auth-form .checkbox-container input {
  margin: 0;
  height: auto;
  cursor: pointer;
}
.custom-auth-form .checkbox-container label {
  font-size: 12px;
}

.custom-auth-form .btn-container, .custom-auth-form .form-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-auth-form .btn-action {
  background: linear-gradient(90deg, #FA9130 0%, #FAB430 100%);
  border-radius: 12px;
  color: #fff;
  border: none;
  font-weight: 300;
  font-size: 14px;
  height: 45px;
  padding: 8px 25px;
  margin: 20px auto 15px auto;
}
.custom-auth-form .form-links a {
  color: #00000066;
  font-size: 12px;
}

.custom-auth-form .error-msg, .custom-auth-form .success-msg {
  text-align: center;
  margin-top: 10px;
  font-weight: 400;
}
.custom-auth-form .error-msg {
  color: red;
}
.custom-auth-form .success-msg {
  color: green;
}
