body {
  padding: 0 !important;
}

main {
  height: auto;
  margin-top: 0;
}

.pointerBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  top: 0;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: #0F4482;
  background-color: white;
  height: 50px;
  border-radius: 50px;
  outline: none;
  border: none;
}
.pointerBtn .arrow {
  display: block;
}
.pointerBtn:hover .arrow {
  animation: arrowMovement 1.5s ease infinite;
}
.pointerBtn:hover .arrow-back {
  animation: arrowMovementBack 1.5s ease infinite;
}
.pointerBtn:hover {
  color: #0F4482;
}
@keyframes arrowMovement {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(10px);
  }
  80% {
    transform: translateX(0);
  }
}
@keyframes arrowMovementBack {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(0);
  }
}

.pointerBtn-transparent {
  background: transparent;
  color: white;
  border: 1px solid white;
}
.pointerBtn-transparent:hover {
  color: white;
}

.scrolling-back-section {
  position: relative;
  height: auto;
}
.scrolling-back-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.scrolling-back-section .row {
  height: 100%;
  min-height: 100vh;
}
.scrolling-back-section .scrolling-col {
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
}
.scrolling-back-section .first-col {
  animation: scrollBack 25s linear infinite;
}
.scrolling-back-section .second-col {
  animation: scrollBack 30s linear infinite reverse;
}
.scrolling-back-section .third-col {
  animation: scrollBack 25s linear infinite;
}
.scrolling-back-section .forth-col {
  animation: scrollBack 30s linear infinite reverse;
}
.scrolling-back-section .fifth-col {
  animation: scrollBack 17s linear infinite;
}
.scrolling-back-section .sixth-col {
  animation: scrollBack 35s linear infinite reverse;
}
.scrolling-back-section .scroll-img-container {
  position: absolute;
  top: 0;
  height: 200%;
}
.scrolling-back-section .scroll-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
@keyframes scrollBack {
  0% {
    top: 0;
  }
  100% {
    top: -76%;
  }
}

.login-form-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.login-form-box .login-form {
  padding: 35px;
  min-width: 340px;
  max-width: 340px;
  height: auto;
  background: white;
  border-radius: 20px;
}
.login-form-box .welcome-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: 0.01em;
  color: #10316D;
}
.login-form-box .welcome-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #858585;
  margin-bottom: 20px;
}
.login-form-box .btn-box {
  gap: 20px;
  margin-bottom: 30px;
}
.login-form-box .sign-in-btn {
  min-width: 100%;
  margin: 0 auto;
  color: white;
  background: rgb(0, 173, 238);
  height: 50px;
  min-height: 50px;
}
.login-form-box .back-btn {
  background: transparent;
  color: rgb(0, 173, 238);
  border: 1px solid rgb(0, 173, 238);
}
.login-form-box .create-btn {
  height: 50px;
  min-height: 50px;
  min-width: 270px;
  border: 1px solid rgb(0, 173, 238);
  color: rgb(0, 173, 238);
  background: transparent;
}
.login-form-box .create-btn svg path {
  fill: rgb(0, 173, 238);
}
.login-form-box .create-btn .white-arrow svg path {
  fill: white;
}
.login-form-box .term-condition-text {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #858585;
}
.login-form-box .term-condition-text a {
  font-weight: 500;
  color: rgb(0, 173, 238);
  -webkit-text-decoration: underline 1px solid rgb(0, 173, 238);
          text-decoration: underline 1px solid rgb(0, 173, 238);
}
.login-form-box .sign-in-form {
  border-radius: 10px;
  background: white;
}
.login-form-box .sign-in-form .forgote-pass-box {
  margin-top: 20px;
}
.login-form-box .login-web-box {
  min-width: 340px;
  height: 100%;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.login-form-box .login-web-form {
  padding: 35px;
}
.login-form-box #web-login-form {
  margin-bottom: 20px;
}
.login-form-box #web-login-form .invalid-feedback {
  bottom: 7px;
}
.login-form-box .form-input {
  padding-bottom: 20px;
  position: relative;
}
.login-form-box .form-input .input-icons {
  position: absolute;
  top: 29%;
  transform: translateY(-50%);
}
.login-form-box .form-input input {
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 10px;
  color: #505050;
  border-bottom: 1px solid #D0D0D0;
}
.login-form-box .form-input .login-password-email {
  padding-left: 20px;
}
.login-form-box .form-input input::-moz-placeholder {
  color: #D0D0D0;
}
.login-form-box .form-input input::placeholder {
  color: #D0D0D0;
}
.login-form-box .form-input input:focus {
  color: #505050;
  border-bottom: 1px solid #505050;
}
.login-form-box .form-input input:focus::-moz-placeholder {
  color: #505050;
}
.login-form-box .form-input input:focus::placeholder {
  color: #505050;
}
.login-form-box .form-input span {
  color: rgba(80, 80, 80, 0.5098039216);
  font-size: 12px;
}
.login-form-box .form-input .show-password {
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
}
.login-form-box .form-input .show-conf-password {
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
}
.login-form-box .form-input .clicked-eye svg path {
  stroke: #00ADEE;
}
.login-form-box .check-box {
  color: #505050;
  margin-top: 10px;
  margin-bottom: 20px;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
}
.login-form-box .check-box input {
  width: 20px;
  height: 20px;
}
.login-form-box .forgot-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: rgb(15, 48, 108);
  transition: 0.5s;
}
.login-form-box .forgot-text:hover {
  color: rgb(0, 173, 238);
}
.login-form-box .or-line {
  margin: 20px 0;
  min-height: 1px;
  border: none;
  background: rgb(130, 130, 130);
  position: relative;
}
.login-form-box .or-line p {
  position: absolute;
  top: -19px;
  background: white;
  color: #10326F;
  font-size: 16px;
  left: 46%;
}
.login-form-box .google-login-btn {
  height: 50px;
  min-height: 50px;
  width: 100%;
  background: #F9F9F9;
  border: 0.5px solid #A0A0A0;
  border-radius: 400px;
  gap: 10px;
  margin-bottom: 20px;
}
.login-form-box .google-login-btn p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #505050;
}
.login-form-box .invalid-feedback {
  font-weight: 400;
  font-size: 8px;
  line-height: 10px;
  letter-spacing: 0.03em;
  color: red;
  left: 0;
  bottom: 8px;
  position: absolute;
}
.login-form-box .overlay-box .sign-up-side-text {
  right: 0;
  z-index: 2;
  position: absolute;
  top: 0;
  padding: 40px 60px;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #103774 0%, #039EDF 125.98%);
}
.login-form-box .overlay-box .logo {
  margin-bottom: 20px;
}
.login-form-box .overlay-box .side-text {
  padding: 0 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
}
.login-form-box .create-account-box {
  position: absolute;
  top: 0;
  right: 0;
  padding: 40px 60px;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #039EDF 0%, #103774 102.68%);
}
.login-form-box .create-account-box .welcome-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.login-form-box .create-account-box .welcome-text {
  font-weight: 300;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
}
.login-form-box .create-account-box .pointerBtn {
  color: white;
  border-color: white;
}
.login-form-box .remember-me input[type=checkbox] {
  display: none;
}
.login-form-box .remember-me input[type=checkbox] + label {
  padding-left: 28px;
  position: relative;
  color: rgba(80, 80, 80, 0.4901960784);
  font-size: 12px;
}
.login-form-box .remember-me input[type=checkbox]:checked + label {
  color: #505050;
}
.login-form-box .remember-me input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(16, 57, 119, 0.537254902);
  border-radius: 3px;
  left: 2px;
}
.login-form-box .remember-me input[type=checkbox]:checked + label::before {
  border: 1px solid #103977;
}
.login-form-box .remember-me input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  left: 2px;
  width: 18px;
  height: 18px;
  background: url(/images/company-login/tick.svg);
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
}
.login-form-box #signup-screen-container {
  min-width: 350px;
  width: 100%;
  min-height: 200px;
  border-radius: 20px;
  overflow: hidden;
}
.login-form-box #signup-screen-container .signup-side-text {
  background: linear-gradient(90deg, #103774 0%, #039EDF 125.98%);
}
.login-form-box #signup-screen-container .signup-screen {
  width: 100%;
  min-height: 690px;
  position: relative;
  background: rgb(255, 255, 255);
  overflow: hidden;
}
.login-form-box #signup-screen-container .logo {
  padding-top: 50px;
}
.login-form-box #signup-screen-container .form-screen {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 30px;
  height: 589px;
  justify-content: center;
  transition: all 1s ease;
  background: rgb(255, 255, 255);
}
.login-form-box #signup-screen-container .form-screen:not(.first-slide) {
  transform: translateX(200%);
}
.login-form-box #signup-screen-container .preference-screen-wrapper {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.login-form-box #signup-screen-container .already-member-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #858585;
  margin-top: -20px;
  margin-bottom: -5px;
}
.login-form-box #signup-screen-container .already-member-btn {
  cursor: pointer;
  color: rgb(0, 173, 238);
}
.login-form-box #signup-screen-container .link {
  cursor: pointer;
  color: rgb(0, 173, 238);
  -webkit-text-decoration: underline rgb(0, 173, 238);
          text-decoration: underline rgb(0, 173, 238);
}
.login-form-box #signup-screen-container .form-screen-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #262261;
}
.login-form-box #signup-screen-container .preference-check {
  display: flex;
  align-items: center;
  gap: 5px;
}
.login-form-box #signup-screen-container .preference-check .checkbox:checked + .checkbox-text {
  color: #505050;
}
.login-form-box #signup-screen-container .preference-check .checkbox {
  opacity: 0;
}
.login-form-box #signup-screen-container .preference-check .checkbox:checked + .checkbox-text::before {
  background: linear-gradient(180deg, #103977 0%, #171352 100%);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2), 0px 0px 5px rgba(0, 0, 0, 0.2);
}
.login-form-box #signup-screen-container .preference-check .checkbox-text {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: rgba(80, 80, 80, 0.5);
  padding: 0;
  margin: 0;
  position: relative;
}
.login-form-box #signup-screen-container .preference-check .checkbox-text::before {
  content: "";
  top: 0;
  left: -20px;
  position: absolute;
  background: #ffffff;
  border: 0.5px solid #262261;
  border-radius: 3.5px;
  width: 15px;
  height: 15px;
}
.login-form-box #signup-screen-container .preference-check .checkbox:checked + .checkbox-text::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 0;
  left: -20px;
  background-image: url("/images/login-page/Union.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.login-form-box #signup-screen-container .check-now-screen {
  width: 100%;
}
.login-form-box #signup-screen-container .check-now-screen .check-now-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #505050;
}
.login-form-box #signup-screen-container .check-now-screen .check-now-text span,
.login-form-box #signup-screen-container .check-now-screen .check-now-text a {
  transition: all 0.5s ease;
  color: rgb(0, 173, 238);
  cursor: pointer;
}
.login-form-box #signup-screen-container .check-now-screen .check-now-text span:hover,
.login-form-box #signup-screen-container .check-now-screen .check-now-text a:hover {
  color: rgb(31, 85, 132);
}
.login-form-box #signup-screen-container .slide-left-remove.form-screen {
  transform: translateX(-200%);
}
.login-form-box #signup-screen-container .slide-in.form-screen {
  transform: translateX(0%);
}
.login-form-box #signup-screen-container .slide-right-remove.form-screen {
  transform: translateX(200%);
}

@media (min-width: 992px) {
  .login-form-box .form-input .login-password-email {
    padding-left: 23px;
  }
  .login-form-box .login-web-box {
    min-width: 820px;
  }
  .login-form-box .login-web-form {
    padding: 40px 60px;
    padding-left: 40px;
  }
  .login-form-box #signup-screen-container {
    min-width: 820px;
    display: flex;
    background: linear-gradient(90deg, #103774 0%, #039EDF 50%);
  }
  .login-form-box #signup-screen-container .signup-screen {
    width: 50%;
    min-height: 555px;
  }
  .login-form-box #signup-screen-container .form-screen {
    padding: 50px;
    height: 555px;
    justify-content: center;
  }
  .login-form-box #signup-screen-container .signup-side-text {
    width: 50%;
    background-image: url(/images/login-page/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
  }
  .login-form-box #signup-screen-container .logo-text {
    padding: 0 80px;
  }
  .login-form-box #signup-screen-container .side-logo {
    padding-bottom: 20px;
  }
  .login-form-box #signup-screen-container .side-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;
    padding: 0 15px;
  }
}
