@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);

html{    background:url(feedback-img.jpg) no-repeat;
  background-size: cover;
  height:100%;
}

#feedback-page{
	text-align:center;
}

/*responsive*/
#form-div {
	background-color:rgba(72,72,72,0.4);
	padding-left:5%;
	padding-right:5%;
	padding-top:5%;
	padding-bottom:7.5%;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  	border-radius:7.5px;
}

/*minimum*/
@media (max-width: 400px) {
.center{}
.center-inner{left:1.5%;position:absolute;width:95%;max-width:400px;}
#form-div {
	padding-left:1%;
	padding-right:1%;
	padding-top:1%;
	padding-bottom:2%;
}
}

/*maximum*/
@media (min-width: 800px) {
.center{left:50%;position:absolute;}
.center-inner{width:800px;height:100%;margin-left:-425px;max-width:750px;}
#form-div {
	padding-left:10%;
	padding-right:10%;
	padding-top:10%;
	padding-bottom:15%;
}
}

/*input fields*/
.feedback-input {
	color:#3c3c3c;
	font-family: Helvetica, Arial, sans-serif;
  	font-weight:500;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 13px 13px 13px 54px;
	margin-bottom: 10px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
  border: 3px solid rgba(0,0,0,0);
}



.focused{
	color:#30aed6;
	border:#30aed6 solid 3px;
}

textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

input:hover, textarea:hover,
input:focus, textarea:focus {
	background-color:white;
}

/* Icons ---------------------------------- */
#name{
	background-image: url(name.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}


#email{
	background-image: url(email.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

#phonenr{
	background-image: url(phone.png);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

#comment{
	background-image: url(comment.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

/*Buttons*/

#button-blue{
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background-color: #3498db;
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}

#button-blue:hover{
	background-color: rgba(0,0,0,0);
	color: #0493bd;
}
	
.submit:hover {
	color: #3498db;
}
	
.ease {
	width: 0px;
	height: 74px;
	background-color: #fbfbfb;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	-ms-transition: .3s ease;
	transition: .3s ease;
}

.submit:hover .ease{
  width:100%;
  background-color:white;
}

/* Header and additional textboxes */
h1{
	color: white;
	text-align: center;
	font-size: 30pt;
	font-family: Arial, sans-serif;
	font-weight:500;
	background-color: rgba(72,72,72,0.4);
	padding-bottom: 20px; 
	padding-top: 20px;
}

.textbox {
color:#3c3c3c;
	font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 13px 13px 13px 54px;
	margin-bottom: 10px;
	width:95%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
  border: 3px solid rgba(0,0,0,0);
}