

    .container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      justify-content: center;
      gap: 40px;
    }

    .form-box {
      width: 100%;
      max-width: 700px;
      padding: 20px;
    }

    .form-box h1 {
      font-size: 32px;
      margin-bottom: 30px;
      text-align: center;
    }

    form {
      display: flex;
      flex-direction: column;
    }

    .row {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }

    .row input {
      flex: 1;
    }

    input,
    textarea {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .file-upload {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .file-upload input[type="file"] {
      display: none;
    }

    .file-upload label {
      background-color: #29abe2;
      color: white;
      padding: 12px 24px;
      border-radius: 25px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .file-upload label:hover {
      background-color: #021823;
    }

    .file-name {
      font-size: 14px;
      color: #555;
      font-style: italic;
    }

    button {
      background-color: #29abe2;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
      align-self: flex-start;
    }

    button:hover {
      background-color: #021823;
    }

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