body
{
	background-color: #ebebeb;
	line-height: 1;
    font-family: 'Helvetica', 'Verdana', sans-serif;
    display: table;
    width: 100%;
    margin: 0;
}

div#login
{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 610px;
    height: 458px;
	margin-top: -229px;
	margin-left: -305px;
	background: linear-gradient(135deg, #fffbf0 10%,#ededed 30%,#d7d8dd 50%,#ededed 70%,#fffbf0 90%);
	box-shadow: -10px -10px 20px rgba(185, 174, 174, 0.49), 20px 20px 20px rgba(177, 170, 170, 0.48);
	text-align: center;
	border: 1px solid grey;

}

div#login div
{
	margin-left: 130px;
	margin-top: 90px;
	width: 55%;
}

div#login div h1
{
	font-weight:bold;
	font-size: 20px;
	color: #3a8a9e;
}

div#login div h1 span
{
	margin-left:25px;
	font-size: 12px;
}

div#login div p, div#login div img, div#login div input
{
	margin-top:30px;
}

input
{

	border:1px solid #3a8a9e;
	color: #3a8a9e;
	height:30px;
	width:325px;
	padding: 5px;
	font-size: 16px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);

}
input:hover{
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    cursor: text;
}

input[type=submit]
{

    cursor: pointer;
    font-weight: bold;
    line-height: 20px;
    text-decoration: none;
    padding: 4px;
    display: inline-block;
    font-size: 14px;
    width: 80px;
    height: auto;
    float: right;
    background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
    color: #ffffff;

}
input[type=submit]:hover {
    background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    box-shadow: none;
}




/*
 * user interaction
 */

.user-interaction {
    position: absolute;
    left: 50%;
		top: 25px;
    width: 610px;
    margin-left: -305px;
    z-index: 20;
    border-radius: 1px;
    border-width: 1px;
    border-left-width: 20px;
    border-style: solid;
    margin-bottom: 20px;
}
.user-interaction>p {
    font-size: 14px;
}
.user-interaction>p>i {
    display: inline-block;
    vertical-align: top;
    line-height: 30px;
}
.user-interaction>p>span {
    display: inline-block;
    vertical-align: top;
    padding: 5px;
    max-width: 561px;
}
.user-interaction__error {
    border-color: #3a8a9e;
    background-color: #fffbf0;
}
.user-interaction__error {
    color: #a51b00 !important;
}
.user-interaction__error>p>i {
    padding-left: 11px;
    padding-right: 3px;
}
