@charset "utf-8";
/****************************************
	base
****************************************/
.tb-cell {
  width: 100%;
  margin: 20px auto 40px auto;
  text-align: left;
}
.tb-cell .row {
  display: block;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.tb-cell .row .cell {
  padding: 10px;
  vertical-align: middle;
  color: #fff;
}
.mail-form .row .cell {
  padding: 5px;
}
.mail-form .row .cell:nth-child(1) {
  background: #3cb371;
}
.mail-form .row .cell:nth-child(2) {
  background: #ccc;
}
input[type="text"],
input[type="email"] {
  height: 30px;
  font-size: 16px;
  width: 97%;
}
textarea {
  height: 100px;
  width:97%;
  font-size: 16px;
}
button {
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}
button[type="button"] {
  margin-left: 10px;
}
button[type="button"],
button[type="submit"] {
  background: #3cb371;
}
button[type="reset"] {
  background: none;
}
button[type="button"]:hover,
button[type="submit"]:hover {
  background: #ddd;
}
button[type="reset"]:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
.tb-cell {
  width: 100%;
}
.tb-cell .row {
  display: flex;
   border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.tb-cell .row .cell {
  border-right: 1px solid #000;
  padding: 10px;
  vertical-align: middle;
  color: #fff;
}
.tb-cell .row .cell:nth-child(odd) {
  width: 30%;
}
.tb-cell .row .cell:nth-child(even) {
  width: 70%;
}
input[type="text"],
input[type="email"] {
  width: 60%;
}

/* ** */}