/* General form styles */
._form-content {
    margin-top: 1rem;
    font-family: 'Open Sans';
    font-size: 16px;
  }

  input {
    background-color: transparent; 
    border: none; 
    border-bottom: 1px solid #A3938140; 
    outline: none; 
    padding: 16px 0; 
    font-size: 22px;
    color: #A39381;
    font-family: 'Open Sans';
    width: 100%;
  }
  
  input::placeholder {
    color: #A39381; 
    opacity: 1;
    font-size: 16px;
    font-family: 'Open Sans';
  }
  
  input:focus::placeholder {
    font-size: smaller; /* Make placeholder text smaller */
    transition: all 0.3s ease; /* Smooth transition for the change */
  }
 ._form_element._x71296074._full_width,
 ._form_element._x36327879._full_width  {
    margin-bottom: 2rem;
  }

  
/* Ensure all checkboxes are visually hidden but still functional */
._checkbox-radio input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    opacity: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  /* Style the label to look like a custom checkbox, with increased spacing */
  ._checkbox-radio label {
    display: inline-block;
    padding-left: 40px; /* Increased space for the checkbox + gap between checkmark and label */
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px; /* Adjust the line height to match the checkbox height */
    margin: 8px 0; /* Margin above and below each checkbox */
  }
  
  /* Custom checkbox appearance */
  ._checkbox-radio label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #A39381;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    background-color: transparent;
  }
  
  /* Custom checkmark appearance */
  ._checkbox-radio input[type="checkbox"]:checked + span label::before {
    content: '✓'; /* Custom checkmark */
    color: #A39381;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 18px; /* Adjust as needed to vertically center the checkmark */
  }
  


  /* Style for the submit button */
._submit {
    margin-top: 2rem;
    font-family: 'Open Sans';
    font-weight: bold; 
    color: black;
    background-color: #A39381; 
    border: none; 
    border-radius: 100px; 
    width: 375px; 
    height: 60px; 
    cursor: pointer;
    transition: opacity 0.3s ease; 
    font-size: 24px;
    text-transform: uppercase;
  }
  
  /* Mouseover effect */
  ._submit:hover {
    opacity: 0.8; /* Slightly reduce opacity on hover */
  }
  
  