* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mitr";
}

.password-container {
  position: relative;
}

.password-container input {
  padding-right: 30px;
  /* Adjust this value based on the width of your icon */
}

.password-container .login-password-toggle {
  position: absolute;
  top: 50%;
  right: 5px;
  /* Adjust this value for the horizontal position of the icon */
  transform: translateY(-50%);
  cursor: pointer;
}

.password-container .login-password-toggle::before {
  font-family: "Font Awesome 5 Free";
  /* Adjust the font family if necessary */
  content: "\f070";
  /* Unicode for the eye-slash icon */
  font-size: 18px;
  /* Adjust the size of the icon */
  color: #888;
  /* Adjust the color of the icon */
}

.login-form-area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 100vh;
  padding: 15px 0;
}

.login-form-area .login-form {
  background: #fff;
  padding: 55px 60px 50px 50px;
  box-shadow: 0px 10px 30px 0px rgba(13, 12, 13, 0.2);
  min-width: 700px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .login-form-area .login-form {
    padding: 40px 20px 20px 26px;
    min-width: 95%;
  }
}

@media (max-width: 575px) {
  .login-form-area .login-form {
    padding: 40px 20px 20px 26px;
    min-width: 95%;
  }
}

.login-form-area .login-form .login-heading {
  text-align: center;
}

.login-form-area .login-form .login-heading span {
  color: #140c40;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  text-transform: capitalize;
}

.login-form-area .login-form .input-box {
  padding-top: 35px;
  padding-bottom: 75px;
}

@media (max-width: 575px) {
  .login-form-area .login-form .input-box {
    padding-top: 28px;
    padding-bottom: 10px;
  }
}

.login-form-area .login-form .input-box .single-input-fields label {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  color: #140c40;
  text-transform: capitalize;
  font-weight: 500;
  text-align: left;
}

.login-form-area .login-form .input-box .single-input-fields {
  margin-bottom: 15px;
}

.login-form-area .login-form .input-box .single-input-fields input {
  border: 1px solid #c9c9c9;
  width: 100%;
  height: 50px;
  padding: 0 25px;
  color: #000;
  margin: auto;
}

.login-form-area .login-form .input-box .single-input-fields input::placeholder {
  color: #777777;
  font-weight: 300;
  font-size: 13px;
}

.login-form-area .login-form .login-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .login-form-area .login-form .login-footer {
    display: block;
    text-align: start;
  }
}

@media (max-width: 575px) {
  .login-form-area .login-form .login-footer {
    display: block;
    text-align: start;
  }
}

.login-form-area .login-form .login-footer p {
  margin: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .login-form-area .login-form .login-footer p {
    margin-bottom: 28px;
    display: block;
  }
}

@media (max-width: 575px) {
  .login-form-area .login-form .login-footer p {
    margin-bottom: 28px;
    display: block;
  }
}

.login-form-area .login-form .login-footer p a {
  color: #005ce6;
}

.login-check {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 8px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .login-check {
    display: block;
  }
}

.login-check input[type="checkbox"]+label {
  display: inline-block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0;
  margin: 0 0 13px 0;
}

.login-check input[type="checkbox"] {
  display: none;
}

.login-check input[type="checkbox"]+label::before {
  content: "\2714";
  border: 0.1em solid #e4e4e4;
  border-radius: 0.2em;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 10px;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
}

.login-check input[type="checkbox"]+label:active:before {
  transform: scale(0);
}

.login-check input[type="checkbox"]:checked+label:before {
  background-color: #005ce6;
  border-color: #005ce6;
  color: #fff;
  line-height: 18px;
}

.login-check a {
  color: #005ce6;
  font-size: 14px;
  font-weight: 400;
}

.login-check a:hover {
  color: #005ce6;
}

@media (max-width: 575px) {
  .login-check a {
    float: left;
    display: block;
    padding-top: 7px;
    margin-bottom: 10px;
  }
}

.register-form-area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 100vh;
  padding: 15px 0;
}

.register-form-area .register-form {
  background: #fff;
  padding: 55px 60px 50px 50px;
  box-shadow: 0px 10px 30px 0px rgba(13, 12, 13, 0.2);
  min-width: 700px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .register-form-area .register-form {
    padding: 40px 20px 20px 26px;
    min-width: 95%;
  }
}

@media (max-width: 575px) {
  .register-form-area .register-form {
    padding: 40px 20px 20px 26px;
    min-width: 95%;
  }
}

.register-form-area .register-form .register-heading {
  text-align: center;
}

.register-form-area .register-form .register-heading span {
  color: #140c40;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  text-transform: capitalize;
}

.register-form-area .register-form .input-box {
  padding-top: 35px;
  padding-bottom: 60px;
}

@media (max-width: 575px) {
  .register-form-area .register-form .input-box {
    padding-top: 28px;
    padding-bottom: 20px;
  }
}

.register-form-area .register-form .input-box .single-input-fields label {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  color: #140c40;
  text-transform: capitalize;
  font-weight: 500;
  text-align: left;
}

.register-form-area .register-form .input-box .single-input-fields input {
  border: 1px solid #c9c9c9;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 25px;
  color: #000;
}

.register-form-area .register-form .input-box .single-input-fields input::placeholder {
  color: #777777;
  font-weight: 300;
  font-size: 13px;
}

.register-form-area .register-form .register-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}



@media only screen and (min-width: 576px) and (max-width: 767px) {
  .register-form-area .register-form .register-footer {
    display: block;
    text-align: start;
  }
}

@media (max-width: 575px) {
  .register-form-area .register-form .register-footer {
    display: block;
    text-align: start;
  }
}

.register-form-area .register-form .register-footer p {
  margin: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .register-form-area .register-form .register-footer p {
    margin-bottom: 28px;
    display: block;
  }
}

@media (max-width: 575px) {
  .register-form-area .register-form .register-footer p {
    margin-bottom: 28px;
    display: block;
  }
}

.register-form-area .register-form .register-footer p a {
  color: #005ce6;
}

.submit-btn3 {
  background: #005ce6;
  height: 60px;
  padding: 10px 43px;
  border: 0;
  color: #fff;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  border-radius: 0px;
}