body {
    font-family: Arial, sans-serif;
    /*background-color: #f0f2f5;*/
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    height: 85vh;
    margin: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .logo-container {
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo {
    width: 314px;
    height: 75px;
    margin-top: 25%;
  }
  .image-container {
    flex: 1;
    width: 100%;
    background-image: url('tst.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .login-container {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .login-title {
    text-align: center;
    color: #007d5d;
    margin-bottom: 1.5rem;
    font-weight: 900;
    font-size: 34px;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5f6368;
  }
  .form-group input, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
    height: 50px;
    background: white;
  }
  .form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #007d5d;
  }
  .submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #007d5d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .submit-btn:hover {
    background-color: #009771;
  }
  .links {
    text-align: center;
    margin-top: 1rem;
  }
  .links a {
    color: #1669d9;
    text-decoration: none;
    font-size: 14px;
  }
  .links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    body {
      align-items: flex-start;
      background-color: #ffffff;
    }
    .container {
      flex-direction: column;
      margin: 0;
      height: auto;
      border-radius: 0;
      box-shadow: none;
    }
    .left-section {
      flex-direction: column;
    }
    .logo-container {
      padding: 1rem;
    }
    .image-container {
      height: 30vh;
      min-height: 200px;
    }
    .login-container {
      padding: 1.5rem;
      flex: 1;
      justify-content: flex-start;
    }
  }
  @media (max-width: 480px) {
    .login-container {
      padding: 1rem;
    }
    .form-group input, .form-group select {
      font-size: 14px;
    }
    .submit-btn {
      font-size: 14px;
    }
    .links {
      font-size: 12px;
    }
  }