button.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #999;
  box-sizing: border-box;
  width: 100%;
  max-width: 250px;
  height: 50px;
  padding: 0 6% 0 6%;
  margin: 10px auto;
  color: #999;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
button.btn:hover {
  background: #999;
  color: #fff;
}
button.nbd {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #FFF;
}


#main table.mailform {
    width: 100%;
}
#main table.mailform th {
    width: 30%;
    padding: 10px 20px;
}
#main table.mailform td {
    width: 70%;
    padding: 10px 20px;
}
#main table.mailform p.error, #main table.mailform span.required {
  color: #FF0000;
}
#main table.mailform p{
  margin: 1em 0;
}

#main table.mailform input{
    width: 75%;
    padding: 5px;
}
#main table.mailform textarea{
    width: 100%;
    height: 100px;
    padding: 5px;
}