body.login div#wrapper {
	background-color: transparent;
	width: auto;
	padding: 0;
}

body.login div section {
    width: 380px;
    height: 420px;

    position:absolute;
    left:50%;
    top:50%;

    margin: -140px 0 0 -190px;
	padding: 2em 2em 4em 2em;
	box-sizing: border-box;

	display: none;

}

body.login div section#start {

	padding: 0;
/* 	background-image: url(../art/vc.png); */
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: .5;
	background-size: contain;
}

body.login div section#up {
	/* 	background-color: rgba(255,255,255,.85); */
		
	background: rgb(247,247,247);
	background: -moz-linear-gradient(top,  rgba(247,247,247,1) 0%, rgba(224,224,224,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,247,247,1)), color-stop(100%,rgba(224,224,224,1)));
	background: -webkit-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(224,224,224,1) 100%);
	background: -o-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(224,224,224,1) 100%);
	background: -ms-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(224,224,224,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,247,1) 0%,rgba(224,224,224,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#e0e0e0',GradientType=0 );

	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	border: 2px solid rgba(117, 142, 149, 1);
	box-shadow: 0 0 1em rgba(0,0,0,.5);
		
	-webkit-transition: .3s -webkit-transform ease-out;
	-moz-transition: .3s -moz-transform ease-out;
	transition: .3s transform ease-out;
	
}

body.login div section h2 {
	font-weight: 800;
	font-size: 1.6em;
	margin-bottom: 1em;
	font-family: "proxima-nova-extra-condensed";
	text-align: center;
	}


body.login section p {
	text-align: center;
	font-weight: 300;
	letter-spacing: .05em;
}

/* Repeats... */

body.login section form input[type='text'], body.login section form input[type='password'] {
	padding: .4em;
	margin-bottom: .5em;
	font-size: 1.5em;
	color: #aaa;
	border: 1px solid #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	outline: 0;
}

body.login section form input[type='text']:focus, body.login section form input[type='password']:focus {
	color: #333;
	border-color: #e3c412;
}


