html,
body {
  height: 100%;
  width: 100%;
  color: var(--text-dark, #2B2B35);
}

a {
  color: #0073E6;
}

.a:hover {
  color: #2546F0;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

/* -------------- Login ---------------- */

.login-wrap {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 0;
}

.login-left-panel {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7rem;
  background: #0D2860;
  position: relative;
  overflow: hidden;
}

.login-right-panel {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-logo {
  background-image: url(../images/cc-logo-white.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 20rem;
  height: 8rem;
}

.login-clipart {
  background-image: url(../images/cc-logo-white.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 42rem;
  height: 36rem;
  flex-shrink: 0;
  z-index: 1;
}

.login-clipart-floor {
  background-image: url(../images/login-clipart-floor.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  width: 1466px;
  height: 582px;
  bottom: -2rem;
  right: 2.5rem;
  z-index: 0;
}

.login-box {
  display: flex;
  width: 640px;
  padding: 60px;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.login-btn {
  border-radius: 8px;
  background: var(--Primary, #0073E6);
  display: flex;
  height: 70px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  width: 100%;
}

.login-btn:hover {
  background: var(--Colour-3, #2546F0);
}

.login-box-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.login-box-header {
  font-size: 2.25rem;
  font-weight: 700;
}

.login-box-des {
  color: var(--gray-gray-800-text, #383838);
  font-size: 1.12rem;
}


.btn-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.btn-img.arrow-right {
  background-image: url(../images/arrow-right.svg);
}

.arrow-left {
  background-image: url(../images/arrow-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  display: inline-block;
  width: 20px;
  height: 24px;
}

.go-back {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.login-logo-dark {
  width: 150px;
  display: none;
}

.login-box-body {
  width: 100%;
}


/* -------------- Input Fields ---------------- */

input::placeholder {
  opacity: 0.5;
  color: #CECEE4 !important;
}

.inputfield-label {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 600;
}

.checklist-header {
  font-size: 1.8rem;
  color: var(--bs-blue);
}

.input-large {
  border-radius: 12px;
  border: 1px solid var(--border-medium, #C8D1DA);
  background: var(--White, #FFF);
  height: 80px;
  padding: 23px 27px;
  font-size: 24px;
  font-weight: 500;
}

.form-group.required .inputfield-label:after {
  content: "*";
}

.invalid-feedback {
  color: #D93550;
}

.large .invalid-feedback {
  font-size: 1.12rem;
}

.form-check-wrap {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}


/* -------------- Extra large screens, TV ---------------- */

@media (min-width: 1201px) {}

/* -------------- Desktops, large screens ---------------- */

@media screen and (max-width: 1200px) {
  .inputfield-label {
    font-size: 1rem;
  }

  .input-large {
    border-radius: 8px;
    height: 66px;
    padding: 23px 20px;
    font-size: 18px;
  }

  .login-clipart {
    width: 30rem;
    height: 24rem;
  }

  .login-logo {
    width: 16rem;
    height: 6rem;
  }

  .login-box-des {
    font-size: 1rem;
  }
}

/* -------------- Small screens, laptops ---------------- */

@media screen and (max-width: 1024px) {
  .login-right-panel {
    width: 55%;
  }

  .login-box {
    gap: 30px;
  }
}

/* -------------- iPads, Tablets ---------------- */

@media screen and (max-width: 768px) {
  .login-right-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .login-logo-dark {
    width: 150px;
    display: block;
  }
}

/* -------------- Mobile devices ---------------- */

@media (max-width: 480px) {
  .login-box-header {
    font-size: 1.8rem;
  }

  .login-box {
    padding: 30px;
    gap: 20px;
  }

  .login-logo-dark {
    width: 100px;
  }

  .input-large {
    height: 60px;
  }

  .inputfield-label {
    margin-bottom: 5px;
  }

  .form-group.large.required.inputfield-wrap.mb-30 {
    margin-bottom: 20px !important;
  }

  .form-check-wrap {
    margin: 25px 0;
  }
}


.eye-slash {
  background-image: url(../images/show.svg);
  background-size: 36px;
  background-position: center;
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
  position: absolute;
  top: calc(50% - 34px);
  top: calc(50% - 34px);
  cursor: pointer;
  right: 8px;
}

.eye-slash-hide {
  cursor: pointer;
  background-image: url(../images/hide.svg);
  background-size: 36px;
  background-position: center;
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
  position: absolute;
  top: calc(50% - 34px);
  top: calc(50% - 34px);
  cursor: pointer;
  right: 8px;
}

.marginTop18 {
  margin-top: 18px;
}