body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh !important;
    background-color: #f0f0f0;
    font-family: 'Helvetica', sans-serif;
  }
  
  .login-card {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    width: 60%;
    height: 450px;
    min-width: 850px;
    max-width: 950px;
  }
  
  .login-card .left-side {
    flex: 1;
    background-image: linear-gradient(to right, #259dab 0%, #2574ab 100%) !important;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center;
  }
  
  .login-card .left-side h3 {
    font-size: 1rem;
    margin-bottom: 40px;
    margin-top: 20px;
    text-align: center;
  }
  
  .login-card .right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    padding: 40px;
  }
  
  .login-form {
    max-width: 450px;
    min-width: 350px;
    margin: 0 auto;
  }

  .login-form h1{
    text-align: center;
  }
  
  .login-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .login-form button {
    background-color: #51239f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  .center-login-button{
    margin-top: 16px;
    text-align: center;
  }