body {
      font-family: Arial, sans-serif;
      background-color: #092660;
      text-align: center;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
  }
  
  h2 {
      color: #fff;
      margin-top: 20px;
  }
  
  form {
      background-color: #fff;
      padding: 20px;
      width: 65%;
      max-width: 500px; /* Set your desired maximum width */
      width: 100%; /* Ensures it doesn't exceed the maximum width */
      border-radius: 5px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      text-align: left;
      display: flex;
      align-items: center;
      flex-direction: column;
  }

  .left-column {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 20px;
  }

  .right-column {
      flex: 2;
      display: flex;
      flex-direction: column;
      padding: 0 20px;
  }

  label {
      display: block;
      font-size: 10;
      margin-top: 5px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="checkbox"],
  input[type="submit"] {
      width: 100%;
      padding: 10px;
      margin: 5px 0;
      border: 1px solid #ccc;
      border-radius: 10px;
      box-sizing: border-box;
  }

  input[type="checkbox"] {
      width: auto;
      margin-top: 5px;
  }

  input[type="submit"] {
      background-color: #FF7900;
      color: #fff;
      cursor: pointer;
      width: 150px;
      height: 50px;
      border: none;
      border-radius: 5px;
  }

  input[type="submit"]:hover {
      background-color: #555;
  }

  img {
      width: 150px;
      height: auto;
      display: block;
  }
