body, html {
    height: 100%;
    margin: 0;
  }
  .bg {
    /* The image used */
    background-image: url("/images/bg-flamingo.jpg");
  
    /* Full height */
    height: 100%; 
    width: 100%;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .login-container{
      border-radius:5px;
      margin-top: 5%;
      margin-bottom: 5%;
      display:flex;
      justify-content:center;
  }
  
  .login-container .row{border-radius:inherit; width:100%; display:flex; justify-content:center;}
  
  .login-form{
      border-radius:inherit;
      padding: 5%;
      box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
      background:rgba(255,255,255,0.9);
  }
  
  .login-container form{
      padding: 10%;
  }
  .btnSubmit
  {
      width: 50%;
      border-radius: 1rem;
      padding: 1.5%;
      border: none;
      cursor: pointer;
  }
  .login-form .btnSubmit{
      font-weight: 600;
      color: #fff;
  }
  
  .login-form .ForgetPwd{
      color: #0062cc;
      font-weight: 600;
      text-decoration: none;
  }
   
  .alpha {
   background-color: #fff;
   opacity: 0.9;
  }