/**
 * User Site Pages
 *
 * LOGIN
========================================================================================*/

#aos_us-login {
    background-color: #fafafa;
    border: 1px solid #ccc;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
}

#aos_us-login .heading-row {
    background-color: #282C3A;
    border-left: 10px solid #3098AB;
	font-size: 18px;
	color: #fff;
	padding: 10px;
	margin-bottom: 20px;
}

#aos_us-login .error {
    font-size: 18px;
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

#aos_us-login form {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	line-height: 25px;
	width: 70%;
	margin: 0 auto;
}

#aos_us-login form .input-row:not(:last-child) {
	margin-bottom: 20px;
}

#aos_us-login form .input-row label.block {
	display: block;
	margin-bottom: 5px;
}

#aos_us-login form .input-row input {
	border: 1px solid #888;
	outline: none;
}

#aos_us-login form .input-row input.block {
	width: 100%;
	padding: 5px 10px;
}

#aos_us-login form .input-row input.hidden {
	display: none;
}

#aos_us-login form .input-row label.custom-checkbox {
	position: relative;
	padding-left: 25px;
	cursor: pointer;
}

#aos_us-login form .input-row label.custom-checkbox:before {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	display: block;
	border-radius: 3px;
	border: 1px solid #888;
	top: 2px;
	left: 0;
	cursor: pointer;
}

#aos_us-login form .input-row input.hidden:checked + label.custom-checkbox:after {
	content: '';
    position: absolute;
    width: 10px;
    height: 5px;
    display: block;
    border-right: 3px solid #888;
    border-top: 3px solid #888;
    top: 5px;
    left: 2px;
    transform: rotate(130deg);
}

#aos_us-login form .input-row.centering {
	text-align: center;
}

#aos_us-login form .input-row button {
	width: 200px;
	padding: 5px 0;
	border-radius: 3px;
	background-color: #3098AB;
	color: #fff;
	font-weight: normal;
}

#aos_us-login form .input-row button:hover {
	background-color: #64b4be;
}

#aos_us-login form .input-row a {
	color: #3098AB;
	text-decoration: underline;
	font-weight: normal;
}

#aos_us-login form .input-row a:hover {
	color: #ff0c69;
}