.authentication__wrapper {
  min-height: 700px;
  background-image: url('../../../Styles/images/backgrounds/auth-bg.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.authentication__wrapper .background-cover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.6;
  z-index: 1;
}

#banner {
  position: fixed;
  z-index: 1001;
  width: 100%;
}

.page-content {
  z-index: 1000;
}

.auth-form__wrapper {
  background-color: var(--color-white);
  border-radius: 8px;
  margin-top: 50px;
}
@media (max-width: 1300px) {
  .auth-form__wrapper {
    margin-top: 100px;
  }
}

.login-form__wrapper {
  padding: 10px;
  display: flex;
}

.login-bg__wrapper {
  min-height: 500px;
  min-width: 600px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('../../../Styles/images/backgrounds/login-bg.jpg');
}

.login-form {
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
}

/* padding for mobile */
@media (max-width: 768px) {
  .login-form {
    padding: 20px 20px;
  }
}

.auth-logo {
  width: 300px;
  height: 55px;
}

.login-form .input-group {
  width: 100%;
  margin-top: 10px;
}

.login-form .input-group input {
  border-top-style: hidden;
  border-left-style: hidden;
  border-right-style: hidden;
  border-bottom: 1px solid #E1E1E1;
  margin: 0;
  padding: 10px 0;
}

.login-form .input-group input:focus {
  outline: none;
}

.login-form .input-group .full-input {
  width: 100%;
}

.login-form .description {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: red;
}

.login-form .forgot-section {
  margin-top: 10px;
  font-size: 12px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.register-section {
  margin-top: 10px;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.auth-form__wrapper .primary-btn {
  margin-top: 6px;
  padding: 10px 0;
  background-color: var(--text-main);
  color: var(--color-white);
  width: 100%;
  border: none;
  border-radius: 6px;
}

.auth-form__wrapper .primary-btn.corppass-btn {
  background-color: var(--text-white);
  color: var(--color-black-singpass);
  font-weight:bold;
  border: 1px solid lightgray;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-form__wrapper .primary-btn.corppass-btn:hover {
  background-color: #F5F5F7;
}

.auth-form__wrapper .singpass-btn {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-red-singpass) !important;
  color: var(--color-white);
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 600;
}

.auth-form__wrapper .singpass-btn:hover {
  background-color: #B0262D !important;
}

.auth-form__wrapper .singpass-text {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin-right: 7px;
}

.auth-form__wrapper .singpass-logo {
  position: relative;
  top: 5px;
  border-width:1px;
}

.auth-form__wrapper .corppass-user {
  text-align: center;
  color: #999999;
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;

}

.auth-form__wrapper .primary-btn.outline {
  background-color: var(--color-white);
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.auth-form__wrapper #submit-login {
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
}

.auth-form__wrapper #register-title {
  /* margin-bottom: 50px; */
  font-size: large;
}

.auth-form__wrapper .primary-btn:disabled {
  background-color: #999999;
}

.auth-form__wrapper .secondary-btn {
  margin-left: 10px;
  margin-top: 10px;
  padding: 12px 24px;
  background-color: var(--secondary-color);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
}

.auth-form__wrapper .login-text {
  margin-top: 12px;
  color: #101015;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.auth-form__wrapper .auth-center {
  display: flex;
  flex-direction: column;
  /* flex-grow: 1;
  justify-content: center; */
}
