@charset "utf-8";
/* CSS Document */
table {
  border-collapse: collapse;
  background-color: #fff;
}
p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}
input[type="text"], select, textarea, button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}
input[type="text"], textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 80%;
  transition: 0.8s;
  border-radius: 0;
}
input[type="text"]:focus, textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
textarea[name="content"] {
  display: inline-block;
  width: 80%;
  height: 200px;
}
input::placeholder, textarea::placeholder {
  color: #ccc;
}
::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
.form-table {
  width: 100%;
}
.form-table td {
  border: 1px solid #666;
  padding: 20px;
}
.form-table th {
  padding-left: 50px;
  text-align: left;
  width: 30%;
  border: 1px solid #666;
  padding: 20px;
  font-size: 1.5rem;
  background-color: #d5d5d5;
}
input[type="submit"]{
padding:10px 50px;
color:#fff;
background: #5bc5f6;
background: -moz-linear-gradient(top, #5bc5f6 0%, #8ad7fa 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5bc5f6), color-stop(100%,#8ad7fa));
background: -webkit-linear-gradient(top, #5bc5f6 0%,#8ad7fa 100%);
background: -o-linear-gradient(top, #5bc5f6 0%,#8ad7fa 100%);
background: -ms-linear-gradient(top, #5bc5f6 0%,#8ad7fa 100%);
background: linear-gradient(to bottom, #5bc5f6 0%,#8ad7fa 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5bc5f6', endColorstr='#8ad7fa',GradientType=0 );
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
font-size:1.5rem;
margin: 20px;
}

input[type="submit"]:hover{
background: #5bc5f6;
background: -moz-linear-gradient(top, #8ad7fa 0%, #5bc5f6 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8ad7fa), color-stop(100%,#5bc5f6));
background: -webkit-linear-gradient(top, #8ad7fa 0%,#5bc5f6 100%);
background: -o-linear-gradient(top, #8ad7fa 0%,#5bc5f6 100%);
background: -ms-linear-gradient(top, #8ad7fa 0%,#5bc5f6 100%);
background: linear-gradient(to bottom, #8ad7fa 0%,#5bc5f6 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8ad7fa', endColorstr='#5bc5f6',GradientType=0 );
}
.button {
	text-align: center;
}
.info {
	text-align: center;
}
.info p {
	font-size: 2rem;
}
.info h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.info img {
	margin: 5px;
}
.small {
	font-size: 1.5rem;
}
@media (max-width: 479px) {
  .form-table th, .form-table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
	.box-inner {
		padding: 0!important;
	}
}