@charset "UTF-8";
/* CSS Document */

@charset "utf-8";
/* CSS Document */

form {
	width:50%;
	margin:0 auto;
}

label {
	display:block;
	margin-top:20px;
	letter-spacing:2px;
    color: #b7cc15;
}

input, textarea {
	width: 100%;
	height:30px;
	background: rgba(250,250,250,0.5);
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #777;
	padding:10px;
	margin-top:10px;
	font-size:16px;
	color:#000;
}

input:focus, textarea:focus {
    border: 2px solid #b7cc15;
}

textarea {
	height:213px;
	font-family:Arial, Helvetica, sans-serif;
	background: rgba(250,250,250,0.5);
}

#submit {
	background: #b7cc15;
    color: #222;
    font-family: 'objektiv-mk2', sans-serif;
    font-size: 16px;
    letter-spacing: normal;
    font-weight: 600;
    text-transform: uppercase;
	width:50%;
	height:55px;
	border:none;
	margin-top:30px;
	cursor:pointer;
}

	#submit:hover {
		background-color: #1C1C1C;
        color: #b7cc15;
        border: 1px solid #b7cc15;
        transition: background-color 0.5s;
	}

footer a img {
	border:none;
	float:right;
	margin:0px 59px 40px 0px;
}

/*------------Media Queries----------------------------*/

@media only screen and (max-width:768px) {
  
 form {
	width:75%;
}
    
    #submit {
        
        width: 100%;
    }    
    
}

