input[type=text],input[type=email],input[type=number]{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: #3CBC8D;
  color: white;
    border: 3px solid #555;
  
  }
  
  textarea {
   /* width: 100%;
    height: 150px;*/
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #3CBC8D;
    color: white;
    resize: none;
  }
  select {
   /* width: 100%;*/
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    
    background-color: #3CBC8D;
    color: white;
  }
  input[type=button], input[type=submit], input[type=reset] {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
  }