textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
  outline: 0px !important;
  box-shadow: none !important;
}

.auth-wrapper {
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #fff 50%, #f4f4f4 50%);
}

.auth-wrapper.rotate-bg {
  background: linear-gradient(90deg, #f4f4f4 50%, #fff 50%);
}

.auth-wrapper .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.signup-wrapper {
  margin-left: auto;
}

.forget-password {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #121212;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-align: center;
  margin-top: 60px;
}

.signup-wrapper em,
.forget-password {
  display: none;
}

.signup-wrapper.active em,
.active .forget-password {
  display: block;
}

.signup-wrapper.active em,
.form-message p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #828ea0;
  letter-spacing: 0em;
  line-height: 130%;
  margin-top: 20px;
  font-style: normal;
}

.signup-wrapper.active em a,
.form-message p a {
  color: #3a80db;
  text-decoration: none;
}


.signup-wrapper.active em a:hover,
.form-message p a:hover {
  text-decoration: underline;
}

.form-message {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}

.form-message p {
  font-size: 20px;
  font-weight: 500;
  color: #121212;
  line-height: 130%;
  text-align: center;
  margin: 0;
  padding: 0;
}

.signin-wrapper,
.signup-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  width: 100%;
  padding: 45px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  border-radius: 6px;
}

.signin-wrapper h2,
.signup-wrapper h2 {
  font-weight: 600;
  font-size: 38px;
  color: #0b1629;
  margin-bottom: 20px;
}

.signup-wrapper h2 {
  font-size: 33px;
}

.signup-wrapper .signup-wrapper-sub-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: #0b1629;
  margin-bottom: 20px;
}

/* .signin-wrapper.active h2,
.signup-wrapper.active h2 {
  color: #f57134;
} */

.signin-wrapper input,
.signup-wrapper input,
#activateSigninForm,
#activateSignupForm {
  width: 100%;
  line-height: 100%;
  display: none;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 10px 12px 0px;
}

.signin-wrapper.active input,
.signup-wrapper.active input {
  display: block;
  border: none;
  border-bottom: 1px solid #3a80db;
  color: #0b1629;
}

#signup-branding-form.disabled input,
#signup-branding-form.disabled input::placeholder {
  border: solid 2px #121212;
  background: unset;
  background-clip: initial;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #121212;
}

#signup-branding-form.disabled input::placeholder {
  border: 0;
}

.signin-wrapper input::placeholder,
.signup-wrapper input::placeholder {
  -webkit-background-clip: text;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}

.signin-wrapper input:-webkit-autofill,
.signin-wrapper input:-webkit-autofill:focus,
.signup-wrapper input:-webkit-autofill,
.signup-wrapper input:-webkit-autofill:focus {
  color: #000;
  background-clip: initial;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.signin-wrapper input[type="submit"],
.signup-wrapper input[type="submit"],
#activateSigninForm,
#activateSignupForm {
  display: block;
  background: transparent;
  color: #121212;
  border-color: #121212;
  border-width: 2px;
  border-image-source: unset;
  background-clip: initial;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.auth-wrapper .active input[type="submit"] {
  background: #3a80db;
  height: 36px;
  border-radius: 6px;
  padding: 5px 10px;
  border: none;
  color: #fff;
  margin: 30px 0px 0px;
  transition: .3s ease-out;
}

.auth-wrapper .active input[type="submit"]:hover {
  opacity: .85;
  transition: .3s ease-out;
}

.error-msg {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #d91528;
}

.warning-msg{
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #3a80db;
}

#signup-email.signup-email-error,
#signup-branding-phone.signup-branding-phone-error,
#company_name_orig.company_name_orig-error,
#signup-users.signup-users-error,
#activation-code.activation-code-error,
#installation-code.installation-code-error {
  border-bottom: 1px solid #d91528;
}