@import url("https://fonts.googleapis.com/css2?family=Poppins: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;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
}

.login-wrapper {
  width: 100vw;
  height: 100vh;
  background-color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}
.login-wrapper .login-screen {
  width: 75%;
  height: 80vh;
  z-index: 1;
  display: flex;
}
@media (max-width: 1280px) {
  .login-wrapper .login-screen {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .login-wrapper .login-screen {
    height: 70vh;
  }
}
.login-wrapper .login-screen__left {
  background-color: #1B2B4D;
  height: 100%;
  width: 50%;
  border-radius: 20px 0 0 20px;
  background-image: url("../../media/flight.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .login-wrapper .login-screen__left {
    display: none;
  }
}
.login-wrapper .login-screen__right {
  background-color: #F8F9F8;
  height: 100%;
  width: 50%;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .login-wrapper .login-screen__right {
    width: 100%;
    border-radius: 20px;
  }
}
.login-wrapper .login-screen__right h1 {
  font-size: calc(30px + 10 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-style: normal;
  color: #4C4C4C;
  text-align: center;
}
.login-wrapper .login-screen__right .formWrapper {
  padding: 0px 80px;
  margin-top: 30px;
}
@media (max-width: 1280px) {
  .login-wrapper .login-screen__right .formWrapper {
    padding: 0px 50px;
  }
}
@media (max-width: 575px) {
  .login-wrapper .login-screen__right .formWrapper {
    padding: 0px 30px;
  }
}
.login-wrapper .login-screen__right .formWrapper .form-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block-end: 40px;
}
.login-wrapper .login-screen__right .formWrapper .form-input label {
  color: #C7CACB;
  font-size: calc(10px + 6 * (100vw - 375px) / 1545);
  font-weight: 400;
}
.login-wrapper .login-screen__right .formWrapper .form-input input {
  padding: 15px;
  font-size: calc(15px + 5 * (100vw - 375px) / 1545);
  color: #4C4C4C;
  border-radius: 10px;
  border: 1px solid #E5E5E5;
  outline: unset;
  box-shadow: none;
  font-weight: 400;
  box-sizing: border-box;
  width: 100%;
}
.login-wrapper .login-screen__right .formWrapper .form-input .passowrd-eye-wrapper {
  position: relative;
}
.login-wrapper .login-screen__right .formWrapper .form-input .passowrd-eye-wrapper .password-eye {
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
  cursor: pointer;
}
.login-wrapper .login-screen__right .formWrapper .form-check {
  display: flex;
  align-items: center;
}
.login-wrapper .login-screen__right .formWrapper .form-check__left {
  color: black;
  font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 55%;
}
@media (max-width: 575px) {
  .login-wrapper .login-screen__right .formWrapper .form-check__left {
    gap: 10px;
  }
}
.login-wrapper .login-screen__right .formWrapper .form-check__left .check {
  cursor: pointer;
  position: relative;
  display: flex;
}
.login-wrapper .login-screen__right .formWrapper .form-check__left .check:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  border-radius: 5px;
  transition: opacity 0.2s ease;
}
.login-wrapper .login-screen__right .formWrapper .form-check__left .check svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #c8ccd4;
  stroke-width: 1.5;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}
@media (max-width: 1280px) {
  .login-wrapper .login-screen__right .formWrapper .form-check__left .check svg {
    width: 20px;
  }
}
.login-wrapper .login-screen__right .formWrapper .form-check__left .check svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}
.login-wrapper .login-screen__right .formWrapper .form-check__left .check svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}
.login-wrapper .login-screen__right .formWrapper .form-check__left #remember:checked + .check svg {
  stroke: #1B2B4D;
}
.login-wrapper .login-screen__right .formWrapper .form-check__left #remember:checked + .check path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}
.login-wrapper .login-screen__right .formWrapper .form-check__left #remember:checked + .check polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}
.login-wrapper .login-screen__right .formWrapper .form-check__right {
  width: 45%;
  display: flex;
  justify-content: flex-end;
}
.login-wrapper .login-screen__right .formWrapper .form-check__right a {
  color: #2E97E6;
  font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  text-decoration: none;
}
.login-wrapper .login-screen__right .formWrapper .signIn {
  padding: 10px;
  border-radius: 10px;
  background-color: #2E97E6;
  box-shadow: none;
  outline: none;
  border: none;
  color: white;
  width: 100%;
  margin-top: 50px;
  cursor: pointer;
  font-size: calc(12px + 6 * (100vw - 375px) / 1545);
}
.login-wrapper .login-screen__right .formWrapper .signIn:hover {
  background-color: #2273b1;
}/*# sourceMappingURL=style.css.map */