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


/* email küldő*/
body{
	background-color: #530000;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	width: 500px;
}
form{
	margin-top: 1%;
	margin-right: 10%;
	margin-bottom: 1%;
	margin-left: 10%;
}  
input[type=text]{
	background-color: #BCBCBC;
	margin-bottom: 10px;
	margin-top: 10px;
	width: 100%;

	border-radius: 5px;
	border: 3px double #c7c7c7;

}
input[type=submit]
{
	background-color: #191919;

	margin-left: 20%;
	margin-right: 20%;
	width: 40%;
	border-radius: 5px;
	border: 3px double #c7c7c7;
	color:#FFF;
	cursor: pointer;

}
#submit:hover{
   background-color: black;
   color:#e7e8b9;
}

textarea{
    background-color: #BCBCBC;
	width:99%;
	padding: 15px;
	margin-top: 10px;

    border:3px double #c7c7c7;
	border-radius:5px; 
	margin-bottom: 10px;
	resize:none;

  } 
input[type=text]:focus,textarea:focus {
	border-color: #FF9900;
	
}
