body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .app-container {
    display: flex;
    flex-direction: column;
    height: 100vh; 
  }

  .left-side {
    flex: 1;
    background-color: #017bff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-container {
    margin-top: 20px;
  }

  .logo {
    width: 200px;
    height: 200px;
    position: relative;
    bottom: 0;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
  }

  .left-content {
    max-width: 90%;
    margin-top: 30px; 
  }

  .right-side {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: inherit;
    align-items: normal;
    display: flex;
  }

  .form-container {
    max-width: 100%; 
    flex: 1;
    text-align: center;
    padding: 20px;
  }

  .form-container p {
    flex: 1;
    text-align: left;
    color: #222;
    font-size: 25px;
    font-weight: 400;
  }

  .form-container h2 {
    flex: 1;
    text-align: left;
    color: #222;
    font-size: 60px;
    font-weight: 700;
  }
  
  .form-container span a {
    color: #127CC7;
    font-size: 25px;
    font-weight: 500;
    text-decoration-line: underline;
  }

  .icons-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .icons-container a {
    text-decoration: none;
    color: #000;
  }
  
  .icon {
    margin: 0 10px;
    max-width: 40px;
    height: auto;
  }

  .BigImg {
    max-width: 60%;
    position: relative;
    bottom: 0;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
  }

  /* Media query for small screens */
  @media only screen and (min-width: 600px) {
    .app-container {
      flex-direction: row; /* Switch back to horizontal layout for larger screens */
    }

    .left-side {
      flex: 1;
    }

    .right-side {
      flex: 1;
    }

    .form-container {
      max-width: 80%;
    }

    .icons-container {
      flex-direction: column-reverse;
      flex-wrap: wrap;
      align-content: space-between;
    }
  }

 