body {
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: none;
  }

  .content-split {
    flex: 1;
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 80px); 
  }

  .left-side,
  .right-side {
    flex: 1;
  }

  .left-side {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: white;
  }

  .right-side {
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form-container {
    background-color: #082567;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .form-container h2 {
    text-align: center;
    margin-bottom: 25px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
  }

  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;   
    font-size: 1em;
  }

  .btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn:hover {
    background-color: #218838;
  }

  .right-side img{
      max-width: 740px;
      max-height: 540px;
  }

  .additional-links{
    color: white
  }

  @media (max-width: 768px) {
    .content-split {
      flex-direction: column;
    }

    .right-side {
      display: none; /* Hide right side on small screens */
    }

    .left-side {
      min-height: 100vh;
    }
  }