.contact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 200px;
    max-width: 1500px;
    background-color: #f2f2f2;
    border-radius: 45px;
    transition: scale 0.4s;
    width: 50%;
    margin: 200px auto auto auto;
}
.contact:hover {
    scale: 1.04;
}


.background {
  position: fixed; 
  top: 0; 
  left: 0;
  z-index: -1; 
  min-width: 100%;
  min-height: 100%;
}

.contact__container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    padding: 35px;
    background-color: #d15223;
    border-radius: 45px 0px 0px 45px;
}
p {
    color: #ffffff;
}

.contact__container__header {
    font-size: 24px;
    font-weight: 200;
}

.contact__container__link {
    font-weight: 900;
    color: #ffffff;
    font-size: 18px;
}


input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    font-family:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto;
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 4px;
    box-sizing: border-box; 
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }

  button[type=submit] {
    background-color: #d15223;
    color: white;
    border: none;
    border-radius: 45px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.4s;
    font-weight: 700;
    font-size: 15px;
    padding: 20px 40px 20px 40px;
  }
  
  
  button[type=submit]:hover {
    background-color: #883416;
    scale: 1.04;
  }
  

  .contact__form {
    border-radius: 5px;
    padding: 20px;
    padding: 30px 20px 48px 20px;
    display: flex;
    text-align: center;
    flex-direction: column;
  }

  .txt {
    font-size: 14px;
    color: black;
  }
  .txt-link {
    color: #e9671c;
  }