body {
      background-image: url('https://m.po-pnl5.com/themes/cabinet/images/body/dark-blue.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      margin: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

.container {
      display: flex; /* Align forms in a row */
      justify-content: space-between; /* Space out forms evenly */
      width: 100%;
      max-width: 400px; /* Set a max-width to ensure responsiveness */
      margin: 1rem;
      padding: 2rem;
      background: rgba(26, 79, 120, 0.14);
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(26, 79, 120, 0.48);
    }

    .form {
      flex: 1; /* Allow forms to grow and fill the container */
      margin: 0 1rem; /* Add space between forms */
      overflow: hidden; /* Prevent scrolling within form elements */
      position: relative; /* Ensure proper positioning within the container */
      transform: none; /* Prevent unwanted scaling or zooming */
          width: calc(100% - 2rem); /* Adjust width to make the input longer */

    }

    .form__title {
      margin-bottom: 2rem;
      text-align: center;
      color: white;
    }

    .form__input-group {
      margin-bottom: 1.25rem; /* Adjust margin to reduce space */
      position: relative;
      display: flex;
      align-items: center;
    }

    .form__input {
      flex: 1;
      padding: 0.75rem;
      padding-left: 2.5rem; /* Adjust padding for icon */
      border-radius: 4px;
      border: 1px solid #dddddd;
      outline: none;
      background: #ffffff;
      transition: background 0.2s, border-color 0.2s;
      transform: none; /* Prevent scaling or zooming */
      
    }

    .form__input:focus {
      border-color: #009579;
      background: #ffffff;
    }

    .form__input--error {
      color: #cc3333;
      border-color: #cc3333;
    }

    .form__input-error-message {
      margin-top: 0.25rem; /* Reduce margin to move closer to input */
      font-size: 0.85rem;
      color: #cc3333;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
    }

    .form__button {
      width: 100%;
      padding: 1rem 2rem;
      font-weight: bold;
      font-size: 1.1rem;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      outline: none;
      cursor: pointer;
      background: #009579;
      transform: none; /* Prevent scaling or zooming */
    }

    .form__button:hover {
      background: #007f67;
    }

    .form__button:active {
      transform: scale(0.98);
    }

    .form__text {
      text-align: center;
      color: white; /* Make text white */
    }

    .form__link {
      color: white; /* Make link white */
      text-decoration: none;
      cursor: pointer;
    }

    .form__link:hover {
      text-decoration: underline;
    }

    .icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #ccc;
      font-size: 1.5rem;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column; /* Stack forms vertically on smaller screens */
        padding: 20px; /* Add padding to prevent overflow */
        width: 100%; /* Ensure container uses full width */
        max-width: none; /* Remove max-width to utilize full width */
        height: auto; /* Allow height to adjust on smaller screens */
        align-items: center; /* Center the container */
      }
      
      .form {
        margin: 0; /* Reset margin to ensure proper alignment */
      }
      
      .form__input-group {
        margin-bottom: 1rem; /* Add space between stacked fields */
      }
    }
    
    
        .form__title {
      margin-bottom: 0.5rem;
      text-align: center;
      font-family: 'Arial', sans-serif; /* Adjust the font family */
      font-size: 1.2rem; /* Adjust the font size */
      font-weight: bold; /* Adjust the font weight */
    }

    .form__title .trade {
      color: white; /* Color for "Trade" */
    }

    .form__title .fusion {
      color: cyan; /* Color for "Fusion" */
    }