/* ------------------common css------------ */
/* --------------montserrat-------------- */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Montserrat", sans-serif;
  color: #353535;
}
a {
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
button:focus {
  border: none;
  outline: none;
}
.container {
  max-width: 90%;
}
/* -------------------helper css--------------- */
.btn-green-common {
  display: inline-block;
  padding: 10px 50px;
  border-radius: 7px;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-green-common:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00a4b1;
  border-radius: 7px;
  z-index: -2;
}
.btn-green-common:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #047680;
  transition: all 0.3s;

  border-radius: 7px;
  z-index: -1;
}
.btn-green-common:hover {
  color: #fff;
}
.btn-green-common:hover:before {
  width: 100%;
}
/* -----------------custom css-------------- */
/* -----------login page-------------------- */
.main-div {
  background-color: #f0f0f6;
  height: 100vh;
  overflow-x: hidden;
  overflow-y:hidden;
  
}
.header {
  padding: 12px 0px;
}
.login_form .login_form__image h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 49px;
  color: #1b335f;
}
.login_form .login_form__image p {
  font-size: 22px;
  margin-top: 15px;
  color: #8d99af;
  max-width: 60%;
}
.login__form__elementor {
  background-color: #fff;
  box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 45px;
  overflow: hidden;
}
.login__form__elementor .login__title span {
  font-weight: 500;
  font-size: 35px;
  color: #1b335f;
}
.login__form__elementor .login__title {
  background: rgba(0, 164, 177, 0.1);
  display: inline-block;
  border-radius: 53px;
  padding: 1px 50px;
  position: absolute;
  left: -20px;
}
.login__form__elementor form {
  margin-top: 90px;
}
.login__form__elementor .form-control {
  background: #ffffff;
  border: 2px solid #f0f0f7;
  border-radius: 7px;
  height: calc(2.3em + 0.75rem + 2px);
}
.login__form__elementor label {
  font-size: 20px;
  line-height: 24px;
  color: #2b2b33;
}
.login__form__elementor__forgotpass {
  font-size: 15px;
  line-height: 18px;
  color: #00a4b1;
  text-align: right;
  display: block;
}
.login__form__elementor__powered {
  font-size: 15px;
  line-height: 18px;
  color: #2b2b33;
  opacity: 0.5;
  display: block;
  text-align: center;
}
.poat__image {
  position: absolute;
  right: -55px;

  bottom: 0;
}
