html
{
	width: 100%;
	height: 100%;
}

#welcome
{
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	height: 100%;
	position: relative;
	text-align: center;
	overflow: hidden;
	background-color: #3c7ac5;
/*	background-image: url('grass.jpg');
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;   
	background-position: 50% 50%;
*/	background: radial-gradient(ellipse, #ade, #3c7ac5);
	font-family: 'Helvetica Neue', Tahoma;;
}

#welcome #corner
{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 41px;
	height: 43px;
	background-image: url(lcorner.gif);
	z-index: 1;
}

#welcome form
{
/*	background-color: rgba(255, 255, 255, 0.5);*/
    border-radius: 0.7em;
    display: block;
    font-size: 1.7em;
    left: 50%;
    margin: -7em 0 0 -400px;
    max-width: 800px;
    padding-bottom: 1.5em;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

#welcome h1
{
	font-size: 1.2em;
	font-weight: 300;
	margin: 0;
	padding: 1em 0px 0.5em;
	color: #fff;
}

#email
{
	position: absolute;
	left: -10000%;
}

#welcome textarea
{
	width: calc(100% - 1.4em);
    height: calc(100% - 1em);
    padding: 0.5em 0.7em;
    font-size: 1em;
    font-weight: 300;
    border-radius: 0.95em;
    outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    -webkit-box-shadow: inset 0px 0px 0.1em rgb(0, 0, 0);
    -moz-box-shadow: inset 0px 0px 0.1em rgb(0, 0, 0);
    box-shadow: inset 0px 0px 0.1em rgb(0, 0, 0);
    font-family: unset;
    border: 0;
}

#sendmsg:hover
{
	background-color: #86be86;
}

#msg::-webkit-input-placeholder {color: #aaa;}
#msg:-moz-placeholder {color: #aaa;}

#sendmsg::-moz-focus-inner
{
	padding: 0.15em 0.45em;
}

#border
{
    width: 85%;
    height: 8em;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(255,255,255,0.3));
    padding: 0.05em;
    border-radius: 1em;
}

#sendmsg
{
	font-size: 1.2em;
	padding: 0.2em 0.5em;
	cursor: pointer;
	margin-top: 0.7em;
	font-weight: 300;
	border-radius: 0.3em;
	background-color: #b7d89b;
	border-color: green;
}

#sendmsg[disabled="disabled"]
{
	cursor: default;
	color: #aaa;
	background-color: #ddd;
	border-color: #bbb;
}

@media screen and (max-width: 800px) {
	#welcome form
	{
		background-color: rgba(0,0,0,0);
		margin-left: 0;
		left: 0;
		top: 10%;
		margin-top: 0;
		font-size: 1.2em;
	}
}

@media screen and (max-width: 600px) {
	#welcome form
	{
		zoom: 1.3;
	}
}