.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 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 ::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;
}
