/*
 * Baccons
 * by Henrique Arthur <eu@henriquearthur.me>
 * Não use sem autorização.
*/

*,
*:after,
*::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

a,
a:link,
a:hover,
a:active,
a:visited {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	text-decoration: inherit
}

body {
	background: #EEEEEE
}

.page {
	margin: 0 auto;
	width: 300px
}

#logo {
    background: url(../images/SPDVhKK.gif);
    background-size: cover;
    margin: auto;
    margin-bottom: 15px;
    width: 210px;
    height: 100px;
    position: relative;
    z-index: 999;
}

#box-login {
    background-color: #FFFFFF;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 3px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
	padding: 30px;
	width: 300px
}

.form-status {
	border-radius: 4px;
	background: #e74c3c;
	font-family: Open Sans;
	font-weight: 400;
	font-size: 13px;
	color: #FFF;
	margin-bottom: 10px;
	padding: 10px;
	width: 100%;
	text-align: center
}

.input {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
	border-radius: 4px;
	font-family: Open Sans;
	font-weight: 400;
	font-size: 15px;
	color: #8290a3;
	outline: none;
	padding: 10px;
	margin-bottom: 15px;
	width: 100%;
	-webkit-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
	transition: 0.3s all ease
}

.input::-webkit-input-placeholder {
	color: #8290a3
}

.input:focus {
	border-color: #FAC72B;
    box-shadow: 0 1px 6px rgba(250, 199, 43, 0.5);
	-webkit-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
	transition: 0.3s all ease
}

#submit {
    background-color: #FAC72B;
    border: 1px solid #CE6401;
    box-shadow: inset 0 2px rgba(255, 255, 255, 0.3), 0 2px 6px rgba(0, 0, 0, 0.08);
    color: #CE6401;
    text-shadow: 0 1px rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	font-family: Open Sans;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -1px;
	padding: 15px;
	cursor: pointer;
	outline: none;
	width: 300px;
	-webkit-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
	transition: 0.3s all ease;
    margin-top: 10px;
}

#submit:hover {
    box-shadow: inset 0 56px rgba(0, 0, 0, 0.05), inset 0 2px rgba(255, 255, 255, 0.3), 0 2px 6px rgba(0, 0, 0, 0.08);
	-webkit-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
	transition: 0.3s all ease
}

.txt_info {
    line-height: 14px;
    font-size: 13px;
    color: #666666;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.copyright {
	font-family: Open Sans;
	font-weight: 300;
	font-size: 12px;
	color: #999;
	margin-top: 10px;
	width: 100%;
	text-align: right
}

.login {
	width: 300px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}