﻿input[type=text], input[type=email], textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: rgb(230,230,230);
	font-size: 1em;
    color: rgb(30,30,30);
    width:100%;
	padding-top:10px;
	padding-bottom:10px;
    border: none;
    cursor: pointer;
}
.submit_button{
	text-align: center;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    background-color: rgb(30,30,30);
	color: white;
}



@media screen and (max-width: 1300px) {

	input[type=text], input[type=email], textarea {
		padding: 6px; /* Some padding */  
		border-radius: 2px; /* Rounded borders */
		margin-top: 3px; /* Add a top margin */
		margin-bottom: 6px; /* Bottom margin */
	}

}