.wrapper {
  width: 100vw;
  min-height: 100vh;
  background-color: #ffffff;
  padding: 30px 15px;
  /* background: linear-gradient(45deg, #e8f0fe, #e4eeff); */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .error {
    position: absolute;
  } */
.login {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgb(132 132 132 / 52%);
  /* box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4); */
}
.login .login-form {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  max-width: 50%;
  background-color: #fff;
  /* background: linear-gradient(to right, #4a48aa, #a3a2f5); */
  padding: 40px 45px;
}
@media only screen and (max-width: 767.98px) {
  .login .login-form {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  .login .login-form {
    padding: 40px 20px;
  }
}
.login .login-form .login-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  color: #393939;
  margin-bottom: 25px;
}
.login .login-form .form-wrapper .input-wrapper .label,
.login .login-form .form-wrapper .input-wrapper .input {
  display: block;
  width: 100%;
}
.login .login-form .form-wrapper .input-wrapper .label {
  padding-bottom: 3px;
  font-size: 13px;
  text-align: left;
  color: rgb(84 83 83);
}
.login .login-form .form-wrapper .input-wrapper .input {
  padding: 7px 16px;
  /* border-radius: 30px; */
  border: 1.5px solid rgb(0 0 0);
  background-color: transparent;
  /* box-shadow: 0px 4px 14px rgb(74 72 170 / 8%); */
  color: #000000;
  font-weight: 500;
  border-left: unset;
  border-top: unset;
  border-right: none;
}
.login .login-form .form-wrapper .action-help {
  padding: 5px 0px;
  text-align: center;
}
/* designed By hala Abu Baker  */

.login .login-form .form-wrapper .action-help .help-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease-in-out 0s;
  font-size: 13px;
}
/* .login .login-form .form-wrapper .action-help .help-link:hover {
    color: #fe7092;
  } */
.login .login-form .form-wrapper .actions {
  display: flex;
  flex-flow: column;
  margin-top: 20px;
}
.login .login-form .form-wrapper .actions .action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #7b7b7b 0%, #0b0b0b 86.46%);
  box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
  backdrop-filter: blur(26px);
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;

  color: #fff;

  text-decoration: none;
  border: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
/* .login .login-form .form-wrapper .actions .action:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px -15px rgba(0, 0, 0, 0.5);
  } */
.login .login-form .form-wrapper .input-wrapper .input:active {
  box-shadow: none;
  outline: none;
}
.login .login-form .form-wrapper .input-wrapper .input:focus {
  box-shadow: none;
  outline: none;
}
.login .login-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  flex-shrink: 0;
  flex: 0 0 auto;
  flex-basis: auto;
  width: 50%;
  background-image: url("../img/loginimg.jpg");
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 767.98px) {
  .login .login-decoration {
    display: none;
  }
}
.mb-15 {
  margin-bottom: 15px;
}
/* .mb-30 {
    margin-bottom: 30px;
  } */
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
input[type="checkbox"] {
  vertical-align: middle;
  height: 14px;
  width: 14px;
  background-color: red;
  margin-top: -2px;
}
.terms > label {
  font-size: 14px;
  color: #989898;
  margin-left: 3px;
  font-weight: 600;
}
.field-icon {
  position: absolute;
  z-index: 2;
  top: 33px;
  right: 10px;
  font-size: 16px;
}
input:-internal-autofill-selected {
  background-color: #fff !important;
  color: #000000 !important;
  border-left: unset;
  border-top: unset;
  border-right: none;
}
