@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');

:root {
  --bodybg: #dcdefe;
  --primary-color: #5138ee;
  --grey: #d6d6d6;
  --placeholder: #969696;
  --white: #fff;
  --text: #333;
  --slider-bg: #eff3ff;
  --login-cta-hover: #1f0098;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bodybg);
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  display: flex;
}
.logo-img img {
  width: 100%;
  max-width: 45px;
  margin-left: 10px;
  margin-top: 10px;
}
.login-container {
  display: flex;
  max-width: 1200px;
  background: var(--white);
  margin: 3% 11%;
  width: 100%;
  min-width: 320px;
}
.login-container .onboarding {
  flex: 1;
  background: var(--slider-bg);
  display: none;
  width: 50%;
}
.login-form-inner {
  padding: 17% 50px;
  position: relative;
}
a.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

a.brand span {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.heading-arae h2 {
  margin-bottom: 10px;
  color: #000;
  font-size: 24px;
}

.heading-arae p {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  line-height: 24px;
}
.form-arae {
  margin-top: 50px;
}

.form-input-arae-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 29px;
}

.form-input-col {
  display: flex
;
  flex-direction: column;
}
.form-input-col label {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
  line-height: 24px;
}
.form-input-col input {
  outline: none;
  -webkit-appearance: none;
  line-height: 1.5;
  background-color: transparent !important;
  width: 100%;
  margin-bottom: 12px;
  height: 41px;
  padding: 12px;
  border: 1px solid #404040 !important;
  border-radius: 4px;
  box-shadow: inset 0 .25em 0 0 #f0f1f3;
  font-size: 12px;
  opacity: .8;
  font-weight: 500;
}
.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 15px;
}
.checkbox-row label {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
}

.d-flex input {
  margin-right: 5px;
}

.custom-checkbox {
  accent-color: #051829;
  color: #fff !important;
  cursor: pointer;
  height: 20px;
  width: 20px;
}
.d-flex a {
  text-decoration: none;
  color: #051829;
  font-weight: bold;
}
.button-warrper {
  font-weight: 500;
  margin: 15px 0 0 !important;
  width: 100%;
  height: 42px;
  color: #fff;
  font-size: 16px !important;
  background: #052f53;
  border: none;
  outline: none;
  cursor: pointer !important;
  border-radius: 25px !important;
  box-shadow: 2px 2px 5px #00000020, -5px -5px 10px #ffffff73;
}

.loginbox-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-container .body-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.login-container .onboarding .swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.login-container .onboarding .swiper-slide {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container .onboarding .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.login-container .onboarding .swiper-slide {
  flex-direction: column;
  display: flex;
}

.login-container .onboarding .swiper-slide .slide-image img {
  width: 100%;
  height: 80%;
}
.login-container .onboarding .slide-content {
  width: 60%;
}

.login-container .onboarding .slide-content h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.login-container .onboarding .slide-content p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 30px;
}

.login-container .login-form .login-form-inner h1 {
  margin-bottom: 20px;
  margin-top: 10px;
}
.slide-image {
  height: 400px;
}
@media screen and (min-width: 768px) {
  .login-container .onboarding {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .login-container {
    justify-content: center;
    margin: 20px;
  }
}


