.contact_border{
  min-height: 100vh;
  width: 100%;
  /* border: 2px solid black; */
}

/* Add a background color and some padding around the form */
  .container {
    width: 60%;
    border-radius: 5px;
    background-color:burlywood;
    /* padding: 20px; */
    /* margin-top:30px; */
    /* padding-top:6vmax; */
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    position: absolute;
  }

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%;
    padding: 12px; 
    border: 1px solid #ccc;
    border-radius: 8px; 
    box-sizing: border-box; 
  }

  input[type=email], select, textarea {
    width: 100%;
    padding: 12px; 
    border: 1px solid #ccc;
    border-radius: 8px; 
    box-sizing: border-box; 
  }
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #aab831;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #b0c730;
  }
   
  @media (max-width:600px){
  .container {
    width: 100%;
    border-radius: 5px;
    background-color:burlywood;
    /* padding: 20px; */
    /* margin-top:30px; */
    /* padding-top:6vmax; */
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    position: absolute;

  }
  }