﻿h2 {
	position: relative;
	display: inline-block;
	margin-bottom: 3%;
	width: 100%;
	text-align: center;
}
h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}

.form_box{
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	width: 65%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 3%;
	padding-top: 2%;
	padding-bottom: 2%;
}
.form_box_left{
	margin: 3% 5% 3% -2%;
	width: 20%;
}
.form_box_right{
	width: 69%;
}
.form_title {
	position: relative;
	padding: 0.5em;
	background: #990000;
	color: white;
	width: 100%;
}

.form_title::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);
}

input[type=text] {
	width: 80%;
	float: none;
	padding: 0.5em;
	margin-bottom: 1%;
}
input[type=checkbox]{
	line-height: 0.5em;
	margin-bottom: 1%;
}
input[type=submit] {
	border: none;
	outline: none;
	display: block;
	line-height: 30px;
	width: 160px;
	text-align: center;
	font-size: 13px;
	color: #fff;
	background-color: #808080;
	border-bottom: 4px solid #696969;
	cursor: pointer;
	box-sizing: content-box;
	transition: 0.1s ease all;
	margin-right: auto;
	margin-left: auto;
}
input[type=submit]:hover{
  opacity:0.6;
}
.form_submit{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
textarea{
	width: 90%;
	height: 100%;
}
#privacyporicy{
	padding: 2%;
	width: 45%;
	height: 300px;
	overflow: scroll;
	margin-right: auto;
	margin-left: auto;
	background-color: #F0F0F0;
	margin-bottom: 3%;
	font-size: 0.8em;
}
.container{
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}
@media only screen and (max-width: 896px) {
.form_box{
width:80%
}
.form_box_left{
	margin: 3% 5% 3% -2%;
	width: 100%;
}
.form_box_right{
	width: 90%;
	margin-left: 10%;
}
#privacyporicy{
	width: 80%;
	font-size: 0.7em;
}
}