html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #F5F5F5;
}

@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('../assets/font/ITC Avant Garde Gothic Book Regular.otf') format('opentype');
}

.form-signin {
  max-width: 500px;
  min-width: 500px;
  /* padding: 15px; */
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
}

.text-style {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  font-feature-settings: 'tnum'on, 'lnum'on;
  color: #454A4C;
}

.input-style {
  background: #FFFFFF;
  border: 1px solid #9C9C9C;
  border-radius: 8px;
  height: 50px;
}

.forgot-password-text {
  font-family: 'ITC Avant Garde Gothic';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  font-feature-settings: 'tnum'on, 'lnum'on;
  color: #0300F5;
  text-decoration: unset;
}

.login-btn {
  padding: 8px 30px;
  width: 100%;
  border-radius: 30px;
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  background-color: #0300F5 !important;
  cursor: pointer;
  margin: 20px 0px;
}

.login-btn:hover {
  background: #0300F5;
}

.remove-underline {
  text-decoration: unset;
  color: #fff;
}

.card-shadow {
  background: #FFFFFF;
  border: 1px solid #F5F5F5;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  border-radius: 32px;
}

.logistics-txt {
  font-family: 'ITC Avant Garde Gothic';
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  font-feature-settings: 'tnum'on, 'lnum'on;
  color: #000000;
}

.required {
  color: #FF3131;
}

.keep-me-txt {
  font-family: 'ITC Avant Garde Gothic';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  font-feature-settings: 'tnum'on, 'lnum'on;
  color: #454A4C;
}

.login-with-txt {
  font-family: 'ITC Avant Garde Gothic';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  font-feature-settings: 'tnum'on, 'lnum'on;
  color: #0300F5;
  cursor: pointer;
}

.arrow-align {
  display: inline-flex;
  vertical-align: baseline;
  padding-left: 10px;
}

.or-txt {
  font-family: 'ITC Avant Garde Gothic';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  font-feature-settings: 'tnum'on, 'lnum'on;
  color: #9C9C9C;
  margin-left: unset;
}

.login-logo-size {
  width: 70%;
  height: 100%;
}

@media (max-width: 576px) {
  .login-logo-size {
    width: 100%;
    height: 100%;
  }

  .logistics-txt {
    font-size: 22px;
  }

  .keep-me-txt {
    font-size: 10px;
  }

  .forgot-password-text {
    font-size: 10px;
  }

  .or-txt {
    font-size: 14px;
  }

  .login-with-txt {
    font-size: 14px;
  }
}

@media only screen and (max-device-width: 1080px) and (-webkit-device-pixel-ratio: 4) and (display-mode: fullscreen) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .keep-me-txt {
    font-size: 100%;
  }

  .forgot-password-text {
    font-size: 100%;
  }
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: .875em;
  color: #ec0b21;
}

.password-container   {
  width: 400px;
  position: relative;
}
.password-container input[type="password"],
.password-container input[type="text"]{
  width: 100%;
  padding: 7px 30px;
  box-sizing: border-box;
}
.fa-eye {
  position: absolute;
  top: 35%;
  right: 4%;
  cursor: pointer;
  color: #9C9C9C;
}

/* login page */

.lg-screen {
  width: 100%;
  height: 100vh;
  background-color: #F4F5Fc;
}

.main-sc {display: flex; align-items: stretch;height: 100%;}
.login-left-sc{
  background-image: url('../assets/images/login-img-1.jpg');
  background-position: center;
  background-size:cover;
  background-repeat: no-repeat;
  height:100%;
  width: 50%;

}

.login-right-sc {
    width: 50%;
    height: 100%;
    display:flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.after-line::after {
    display: block;
    content: "";
    width: 10%;
    background-color: #0300F5;
    height: 2px;
    border-radius: 30px;
    margin-left: auto;
    transition: 0.5s;
}

.after-line:hover::after {
  width: 15%;
}

