/* Background styling */
body {
  background: #2244AA;
}
.background-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /*background-image: url('/CMH/assets/img/bg.png');
  background-color: rgb(28, 58, 148);*/
  /*background: 
    linear-gradient(270deg, #0E1B44 0%, #2244AA 30%, #2244AA 70%, #0E1B44 100%),
    url('/assets/img/bg.png') no-repeat bottom;*/
    background: 
    linear-gradient(270deg, #0E1B44 0%, #2244AA 30%, #2244AA 70%, #0E1B44 100%),
    url('/CMH/assets/img/bg.png') no-repeat bottom;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  z-index: 0;
}
/* header */
.header-con {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}
.header-con .header-log-con {
  display: flex;
  align-items: center;
  padding-top: 20px;
}
/* Logo styles */
.logo-img {
  filter: drop-shadow(0 0 4px white);
}
.logo1 {
  width: 95px;
}
.logo2 {
  width: 70px;
}
.logo3 {
  width: 72px;
}

/* Glass effect card */
.glass-card {
  border: 1px solid #EFEFF9;
  backdrop-filter: blur(9px);
  box-shadow: 0px 4px 34.2px -6px rgba(0, 0, 0, 0.25);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.15) 0%, rgba(30, 30, 30, 0.15) 65%);
}

/*Left side*/
.left-label-text1 {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #BDD7FF 0%, #518FEC 70.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 4px 4px 0px #00000040;
}
.left-label-text2 {
  text-shadow: 0px 4px 4px 0px #00000040;
}
.left-label-text3 {
  color: #7DB1FF;
  font-weight: normal;
  font-size: 1.7rem;
}

/*Right side*/
.right-label-text1{
  color: #BDD7FF;
}

/* Inputs */
a:hover {
  cursor: pointer;
}
.input-container label {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  color: #EFEFF9;
  font-style: 'Roboto';
  font-size: 1rem;
}
.input-box {
  background: transparent;
  width: 100%;
  height: 45px;
  background: transparent;
  border: 1px solid #EFEFF9;
  border-radius: 30px;
  padding: 5px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #EFEFF9 !important;
  box-shadow: 0px 4px 4px 0px #00000026 inset;
}
.input-box input {
  background: transparent !important;
  width: 100%;
  height: 100%;
  padding: 5px;
  padding-left: 15px;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-weight: normal;
  color: #EFEFF9;
  background: transparent;
}
.input-box input::placeholder {
  color: #EFEFF9; 
  font-size: 16px; 
  font-weight: normal; 
  font-style: 'Roboto';
}
.input-box img {
  width: 30px;
  height: 20px;
  padding-right: 10px;
  cursor: pointer;
}
.input-box .user-icon {
  width: 30px;
  height: 20px;
}

/*Buttons*/
.btn-light {
  background-color: white !important;
  color: #0033cc !important;
}
.btn-light:hover {
  background-color: #0A0B50 !important;
  color: white !important;
}



@media (max-width:767px) {
  .glass-card {
      margin-top: 100px !important;
  }
  .header-con {
      justify-content: center !important;
  }
  .logo1 {
      width: 85px;
  }
  .logo2 {
      width: 60px;
  }
  .logo3 {
      width: 62px;
  }

  /*left side*/
  .left-sec{
      text-align: center;
  }
  .left-label-text1, 
  .left-label-text2, 
  .left-label-text2-5,
  .left-label-text3 {
      font-size: 20px;
      margin:0px !important;
      padding:0px !important;
  }
  .left-label-text2 {
      display: none;
  }
  .left-label-text2-5 {
      text-align: center;
      display: block !important;
  }
  .left-sec p{
      margin:0px !important;
      padding:0px !important;
  }
}