/*Global css*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
html, body{background:#FBFBFB; font-weight: 300;}
*, html, body, div, p, h1, h2, h3, h4, h5, h6, label{font-family: "Inter", sans-serif; font-optical-sizing: auto;  font-style: normal;}
img{max-width: 100%;}
h1, h2, h3, h4, h5, h6{font-weight: 600 !important;}
p{font-style: 16px; font-weight: 400;}
a{text-decoration: none;}
.form-check-input:focus{border-color:#dee2e6; box-shadow: none;}
.form-check-input:checked {background-color:#000; border-color:#000;}
.form-switch .form-check-input:focus {--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");}
.form-check-input:checked[type="checkbox"]{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");}




/*Login page css*/
.loginContainer{
  display: flex;
  min-height: 100vh;
}
.rightLogin-container, .leftLogin-container {
  flex: 1;
  flex-shrink: 0;
  padding: 30px;
  position: relative;
}
.leftLogin-container {
  background: linear-gradient(0deg, #141414 0%, #3c3c3c 49%, #0b0b0b 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 0 0 580px;
  max-width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  color:#FFF;
}
.rightLogin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  overflow: auto;
}
.leftLoginBlock{
  width: 300px;
  max-width: 100%;
}
.inputGroup{
  position: relative;
}
.input-icon{
  position: absolute;
  left: 8px;
  top: 15px;
}
.loginForm .form-control{
  height:60px;
  padding-left:40px;
  color: #424242;
  font-size: 16px;
}
.loginForm .form-control::placeholder{
  font-size:16px;
  font-weight:200;
}
.loginForm .form-control:focus{
  outline: none;
  box-shadow: none;
  border-color:#000;
}
.show-hide-text{
  position: absolute;
  right:10px;
  top: 23px;
  font-size:10px;
  color:#9E9E9E;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border:none;
}
.show-hide-text:hover{
  color: #000;
}
.loginForm .form-switch label{
  color: #424242;
  font-size:14px;
}
.submitBtn{
  height: 60px;
  display: flex;
  justify-content: space-between;
  font-size:16px;
  font-weight: 500;
}
.passwordIssue{
  color: #424242;
  font-size: 14px;
  display: flex;
  justify-content: center;
  text-decoration: none;
}
.passwordIssue:hover{
  color:#000;
  text-decoration: underline;
}
.loginFooter {
  position: absolute;
  bottom: 0px;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px 30px 30px;
  width: 100%;
  max-width: 100%;
  color:#9E9E9E;
  font-size:12px;
}
.needHelp{
  color:#9E9E9E;
  font-size:12px;
}

/*Login page responsive css*/
@media only screen and (max-width: 1024px) {
  .leftLogin-container{
    flex: 0 0 370px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .leftLogin-container{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .loginContainer{
    flex-direction: column;
  }
  .loginFooter{
    padding: 15px 0px 0px 0px;
    position: relative;
  }
  .leftLoginBlock img {
    width: 130px;
    margin: auto;
  }
   .loginContainer {
    min-height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .leftLoginBlock img{
    display: none;
  }
  .loginFooter {
    justify-content: center;
  }
  .needHelp{display: none}

}