html{
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}
body {
    height: 100%;
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
a{
  text-decoration: none;
}
.logo{
  display: flex;
  justify-content: end;
  margin: 0px;
  padding: 0px;
}

.login-section {
    background-image: url('../../images/login/login-banner.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .login-card {
    background-image: url('../../images/login/login-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    border-radius: 15px;
    padding: 80px 30px;
    width: 100%;
  }
  .login-container {
    flex-grow: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .login-head-text{
    color: #ffff;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
  }
  @media only screen and (max-width: 992px){
    .login-head-text{
      font-size: 23px;
    }
    .login-card{
      padding:50px 30px;
    }
  }
  @media only screen and (max-width: 767px){
    .login-head-text{
      font-size: 20px;
    }
  
  }
  @media only screen and (max-width: 576px){
    .login-head-text{
      font-size: 18px;
    }
   
    
  }

 
  