/* forms.css */
/* Styling for form elements */

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
  }
  
  form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  
  form input:focus, form textarea:focus {
    border-color: #ff6600;
    outline: none;
    box-shadow: 0 6px 18px rgba(225,102,0,0.08);
  }
  
  form button {
    background: linear-gradient(45deg, #ffcc00, #ff3300);
    border: none;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    /* font-size: 1em; */
    cursor: pointer;
    width: 100%;
    font-weight: 600;


  }
  
  form button:hover {
    /* background: #e65c00; */
    opacity: 0.8;
  }
  
  .input-error {
    border-color: red !important;
  }
  
  .next-steps-left {
    margin: 0 2em 2em 2em;
  }
  .next-steps-left ol {
    padding-inline-start: 20px;
    line-height: 2em;
  }
  .next-steps-right {
    margin-right: 2em;
  }

  /* Ensure the contact form textarea gets the same behavior even without the class */
form#contact-form textarea,
.next-steps-right form textarea,
#contact-form textarea {
  min-height: 40px;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

  