@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand+SC&display=swap');
form {
  margin: auto;
  width: 80%;

}
.input-container {
 
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    font-family: 'Patrick Hand SC', sans-serif;
   /* font-size: 20px;*/
    
  }
  
  .icon {
    padding: 10px;
    background: rgb(240, 157, 80);
    color: white;
    min-width: 50px;
    text-align: center;
  }
  
  .input-field {
 
    width: 100%;
    padding: 10px;
    outline: none;
    font-size: 20px;
    border: 1px solid rgb(240, 157, 80);
    font-family: 'Patrick Hand SC', sans-serif;
  }
  
 .input-field:focus {
    border: 2px solid rgb(240, 157, 80);
  }
  textarea:focus {
    outline-color: rgb(240, 157, 80);
    
 
  }
  fieldset{
    border: none;
  }
  
  /* Set a style for the submit button */
  .btn {
    background-color: rgb(240, 157, 80);
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 1;
  }
  textarea {
      width: 100%;
      min-height: 150px;
      font-size: 20px;
      padding: 10px;
      border: 1px solid rgb(240, 157, 80);
      font-family: 'Patrick Hand SC';
  }
  .btn:hover {
    background-color: rgb(211, 122, 38);
    transition: all 0.3s ease-out;
    
  }
  @media all and (max-width: 550px){
    form{
      width: 95%;
    
    }
  }