/* General form styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  /* Labels */
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #323232;
  }
  
  /* Inputs */
  input[type="text"],
  select,
  textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
  }
  
  /* Phone input specific */
  .phone-input {
    display: flex;
    gap: 8px;
  }
  
  .phone-input input[type="text"]:first-child {
    width: 70px;
  }
  
  /* Radio buttons */
  .radio-group {
    display: flex;
    gap: 20px;
  }
  
  .radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
  }
  
  /* Submit button */
  button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #d52b1e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  button[type="submit"]:hover {
    background-color: #b71c1c;
  }
  
  /* Error styles */
  .error {
    color: #d52b1e;
    font-size: 14px;
    margin-top: 4px;
  }
  
  /* Page styles (only for demo page) */
  body {
    margin: 0;
    padding: 20px;
    font-family: neue-haas-grotesk-text, sans-serif;
    background-color: #f9fafb;
    color: #323232;
  }
  
  header, footer {
    text-align: center;
    padding: 20px 0;
  }
  
  header img, footer img {
    height: 40px;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }