.wrap-form {
  display: flex;
  justify-content: center;
  margin-top: 3%;
  margin-bottom: 3%;
}
.custom-form {
  width: 100%;
  max-width: 510px;
  font-family: Arial, sans-serif;
  background: #F4F4F4;
  padding: 2% 2% 1% 2%;
  text-align: center;
}

.custom-form .form-group {
  margin-bottom: 1rem;
}

.custom-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: left !important;
}

.custom-form h2 {
  color: #F2BE4E;
  font-size: calc(1.325rem + .9vw);
  mix-blend-mode: normal !important;
  margin-bottom: 2%;
}

.custom-form p {
  margin-bottom: 0;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.custom-form textarea {
    resize: none;
}

.custom-form button[type="submit"] {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: #5215C8;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.custom-form button[type="submit"]:hover {
    background-color: #3f0da7;
}

@media screen and (max-width: 600px) {
    .custom-form {
        padding: 1rem;
    }
    .custom-form .form-group {
        margin-bottom: 0.5rem;
    }
    .custom-form label {
        font-size: 14px;
    }

    .custom-form input[type="text"],
    .custom-form input[type="email"],
    .custom-form textarea {
        font-size: 14px;
    }

    .custom-form button[type="submit"] {
        font-size: 14px;
    }
}



/* 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.custom-form-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;

  margin-top: 5%;
  margin-bottom: 5%;
  border-radius: 10px;
  background: #F4F4F4;
}

.custom-form-container h2,
.custom-form-container p {
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
}

.custom-form-container h2 {
  mix-blend-mode: normal !important;
  color: #F2BE4E;
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

.custom-form-container form {
  display: block;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.5rem;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
}

.custom-form-submit {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #5215C8;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  object-fit: contain;
}


.custom-form-submit:hover {
  background-color: #4100A6;
} */
