* {
  box-sizing: border-box;
}
body {
	background-color: #F2F2F2;
}
table {
	background-color: #F2F2F2;
	margin: 0 0 2rem 0;
	width: 100%;
}
table tbody tr {
	border: solid 1px;
	border-left: 0;
	border-right: 0;
	border-color: #e9e9e9;
	background-color: #fcfcfc;
}

table tbody tr:nth-child(2n + 1) {
	border: solid 1px;
	border-color: #e9e9e9;	
	background-color: #ffffff;
}

table td {
	padding: 0.5rem 0.75rem;
}

table th {
	padding: 0.75rem 0.75rem 0.75rem 1.5rem;
	text-align: left;
	background-color: #008CBA;
	color: #F2F2F2;
}

#container{
    background-color: white;
	padding: 10px;
	margin: 50px;
	height: auto;
	overflow: auto;
}
#header_box {
	padding: 0px 50px;
}
#form_box{
	margin: auto;
	width: 30%;
	display: block;
    height:inherit;
}
#response_box{
	margin: auto;
	width: 30%;
	height: 32px;
	display: block;
}

/* Input Boxes */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"], select{
  width: 100%;
  padding: 12px 20px;
  color: #282828;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #008CBA;
  border-radius: 4px;
}

/* Response box */
.e-message{
	background-color: #FF6600;
	border:#AA4502 1px solid;
	padding: 5px 0px;
	color: #FFFFFF;
	border-radius:4px;
}
.i-message{
	font-size:.8em;
	color: #FF6600;
	letter-spacing:2px;
	padding-left:5px;
}
.s-message{
	background-color: #12CC1A;
	border:#0FA015 1px solid;
	padding: 5px 0px;
	color: #FFFFFF;
	border-radius:4px;
}
.default{
	background-color: #F9F9F9;
	border:#E9E9E9 1px solid;
	padding: 5px 0px;
	color: #222222;
	border-radius:4px;
}
.error{
	background-color: #FFE0E0;
	border:#AA4502 1px solid;
	padding: 5px 0px;
	color: #FFFFFF;
	border-radius:4px;
}

/* Special Button */
.button {
  border: none;
  color: white;
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.special {
  background-color: white; 
  color: black; 
  border-radius: 4px;
  border: 2px solid #008CBA;
}

.special:hover {
  background-color: #008CBA;
  color: white;
}

/* Menu */
.menu-wrap {
  position: fixed;
  right: 0;
  z-index: 1001;
  width: 300px;
  height: 100%;
  padding: 40px;
  background-color: #222;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.7,0,0.3,1);
  transform: translate3d(360px,0,0);
}
.menu-wrap.active {
  transform: translate3d(0px,0,0);
}

.menu-wrap .menu .icon-list a {
  position: relative;
  font-family: "Oswald", "Helvetica Neue", Helvetica, sans-serif;
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #eee;
  font-size: 20px;
  transition: all 0.3s ease;
}
.menu-wrap .menu .icon-list a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  top: 80%;
  transition: all 0.3s ease;
}
.menu-wrap .menu .icon-list a:hover {
  color: #008CBA;
}
.menu-wrap .menu .icon-list a:hover::before {
  width: 50%;
  background-color: #008CBA;
}

/* Menu Buttons */
.menu-button, 
.close-button {
  position: fixed;
  top: 50px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  font-size: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.menu-button {
  right: 0px;
  z-index: 102;
}
.close-button {
  left: -50px;
  z-index: 100;
}

/* Content */
.content {
  text-align: center;
  color: #282828;
  padding-top: 20px;
}
.content h2 {
  position: relative;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 35px;
  font-family: "Oswald", "Helvetica Neue", Helvetica, sans-serif;
}
.content h2::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #222;
  bottom: -15px;
  left: 50%;
  margin-left: -50px;
}