/* Login page */
#login-form-wrapper {
  width: 330px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-style: normal;
  padding-bottom: 15px;
  color: #7d8b94;
}
#login-form-wrapper textarea:focus, #login-form-wrapper input:focus, #login-form-wrapper button:focus {
  outline: none;
  outline: 0;
  box-shadow: none;
  border: 1px solid #ced4da;
}
#login-form-wrapper .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#login-form-wrapper .header img {
  width: 270px;
}
#login-form-wrapper .header .sub-title {
  font-size: 17px;
  margin-top: 5px;
}
#login-form-wrapper .header .invalid-feedback {
  position: absolute;
  bottom: -25px;
  text-align: center;
  display: block;
}
#login-form-wrapper .login-form {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
#login-form-wrapper .login-form .input-field {
  display: flex;
  flex-direction: column;
}
#login-form-wrapper .login-form .input-field label {
  margin-left: 20px;
}
#login-form-wrapper .login-form .input-field label .label-style {
  background: var(--bs-body-bg);
  padding: 0 4px;
  position: relative;
  z-index: 1;
  height: 15px;
  display: inline-block;
}
#login-form-wrapper .login-form .input-field input {
  height: 45px;
  margin-top: -20px;
  padding: 10px 20px;
  border-radius: 10px;
  color: #7d8b94;
}
#login-form-wrapper .login-form .btn.btn-primary {
  background: #0183e3;
  text-transform: uppercase;
  height: 45px;
  border-radius: 10px;
}
