body, html {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    background-color:#9fc3f2;
    overflow-x: hidden;
  }
  
  /* Container setup */
  .contact-page {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  
  /* Background horse image */
  .background-image {
    position: absolute;
    top: 0%;;
    left: 30%;
    width: 110%;
    min-height: 100vh;
    object-fit: cover;
    z-index: 99;
    display: none;
  }

  @media screen and (min-width: 1024px) {
    .background-image {
      top: -20%;
      display: block;
      z-index: 1;
    }
  }
  
  /* PNG title elements */
  .text-png {
    position: absolute;
    z-index: 2;
    width: 40%;
    height: auto;
    display: none;
  }
  
  
  .form-container {
    width: 90%;
    margin: 40px auto;
    background-color: transparent;
    padding: 24px 20px;
    border-radius: 8px;
    z-index: 100;
    position: relative;
  }

  @media screen and (min-width: 1024px) {
  .form-container{
    position: absolute;
    top: 4%;
    left: 10%;
    margin: 0;
    max-width: 500px;
    padding: 40px 30px;
    background-color: #f4e3c3;
    border: #59473b 1px solid;
    z-index: 10;
    }
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .form-description {
    font-size: 0.9rem;
    text-align: center;
    color: #555;
  }
  
  .name-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #4b3a2f;
    margin-bottom: 4px;
  }
  
  input,
  textarea {
    border: none;
    border-bottom: 1px solid #4b3a2f;
    padding: 6px 0;
    font-size: 1rem;
    background-color: transparent;
    color: #4b3a2f;
  }
  
  textarea {
    resize: vertical;
    min-height: 80px;
  }
  
  button {
    align-self: center;
    padding: 10px 30px;
    border: none;
    background-color: #4b3a2f;
    color: #9fc3f2;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #3a2c24;
  }


  