img {
    display:block;
    margin:0 auto;
    width:300px;
    border-radius:4px;
    box-shadow:5px 5px 6px #323536;
}

main {
	margin:3em auto;
	width:15em;
}

input[type=text],
input[type=password] {
    width:100%;
    box-sizing:border-box;
    padding:0.3rem;
	-webkit-border-radius: 0.3rem;
    border-radius: 0.3rem;
    font-size:1.2em;
}

input[type=text]:focus,
input[type=password]:focus {
    outline:none;
    box-shadow:0 0 4px #323536;
}

p {
    text-transform:uppercase;
    font-size:0.9em;
    letter-spacing:0.1em;
    -webkit-user-select: none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    color:#006ba8;
}

p.login-failed {
    display: block;
    box-sizing: border-box;
    width: 96%;
    max-width: 600px;
    margin: 25px auto 10px auto;
    text-transform: initial;
    font-size:1rem;
    border: 2px solid red;
    color: red;
    font-weight: normal;
    user-select: none;
    box-shadow: 3px 3px 5px #828586;
    padding:20px;    
}

.form-submit {
    text-align:right;
}


input[type=submit] {
    display:inline-block;
    text-transform:uppercase;
    font-size:0.9rem;
    height:2rem;
    line-height:2rem;
    margin:0.1em;
	padding:0 0.8em;
	background:#eee;
	color:#000;
	border:0 none;
	font-weight:normal;
    cursor:auto;
    -webkit-border-radius: 0.4em;
    border-radius: 0.4em;
    box-shadow:0.15em 0.15em 0.2em #323536;
}


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

