.form-styling-custom .wpforms-field-row.wpforms-field-medium {
    max-width: 100%;
}
.form-styling-custom input#wpforms-28961-field_2 {
    max-width: 100%;
}

.historic_seo h3.h4.mb-2.mb-xl-3 {
    font-size: 15px;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.historic_seo p.mb-0.w-sm-90 {
    font-size: 30px;
    font-weight: bold;
    color: black;
}

/* Form Wrapper */
.thrive-form {
  max-width: 900px;
  margin: 0 auto;
}

/* Row Layout */
.thrive-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.thrive-form .form-col {
  flex: 1;
}

.thrive-form .form-col.full {
  flex: 100%;
}

.thrive-form .center {
  text-align: center;
}

/* Inputs Styling */
.thrive-form input,
.thrive-form select,
.thrive-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f3f3f3;
  font-size: 15px;
  font-family: "Playfair Display", sans-serif;
  transition: 0.3s ease;
}

/* Placeholder Styling */
.thrive-form input::placeholder,
.thrive-form textarea::placeholder {
  color: #999;
  font-weight: 400;
}

/* Focus Effect */
.thrive-form input:focus,
.thrive-form select:focus,
.thrive-form textarea:focus {
  outline: none;
  border-color: #ff8a00;
  background: #fff;
}

/* Textarea Height */
.thrive-form textarea {
  min-height: 120px;
  resize: none;
}

/* Submit Button */
.thrive-form input[type="submit"] {
  background: #ff8a00;
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
}

.thrive-form input[type="submit"]:hover {
  background: #e67600;
}
.thrive-form .form-col p {
    margin-bottom: 0;
}

/*Media Query*/


/* Mobile */
@media (max-width: 767px) { }

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) { }

/* Desktop */
@media (min-width: 1025px) { }