/* General Styles */
body {
    /* background: linear-gradient(135deg, #6a11cb, #2575fc); */
    /* background-image: url('../img/login_background.jpg'); */
    /* background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
    */
  }
  
  .auth-container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
    max-width: 550px;
    margin: auto;
  }

  .align-content-center{
    align-content: center;



  }

  

  /* Responsive Design */
  @media (max-width: 767px) {
    .auth-container {
      padding: 1.5rem;
    }
    .login-right-side{
      display: none;
    }
  }
  @media (max-width: 480px) {
    .auth-container {
      padding: 1rem;
    }
  }