/**
 * User Site Pages
 *
 * PASSWORD RESET
========================================================================================*/

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

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

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

#aos_us-password-reset .success {
    color: #00aa00;
}

#aos_us-password-reset .guideline {
    margin-bottom: 20px;
}

#aos_us-password-reset .guideline p {
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
}

#aos_us-password-reset .guideline p a {
    color: #3098AB;
    text-decoration: underline;
}

#aos_us-password-reset .guideline p a:hover {
	color: #ff0c69;
}

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

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

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

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

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

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

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

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

#aos_us-password-reset form .input-row button[type="button"] {
	background-color: #888;
}

#aos_us-password-reset form .input-row button[type="button"]:hover {
	background-color: rgb(163, 163, 163);
}

#aos_us-password-reset #password-reset-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

#aos_us-password-reset #password-reset-popup-overlay.shown {
	opacity: 1;
	visibility: visible;
}

#aos_us-password-reset form {
	width: 600px;
	height: 200px;
}

#aos_us-password-reset #password-reset-popup {
	width: 600px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 5px;
	flex-direction: column;
}

#aos_us-password-reset #password-reset-popup p {
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
}
#aos_us-password-reset #password-reset-popup div {
	display: flex;
	justify-self: center;
	align-items: center;
	margin-top: 40px;
}

#aos_us-password-reset #password-reset-popup div button {
	width: 200px;
	padding: 5px 0;
	border-radius: 3px;
	background-color: #3098AB;
	color: #fff;
	font-weight: normal;
	box-sizing: border-box;
	text-align: center;
	outline: none;
	cursor: pointer;
}

#aos_us-password-reset #password-reset-popup div button.cancel {
	background-color: #888;
	margin-right: 10px;
}

#aos_us-password-reset #password-reset-popup div button.submit {
	background-color: #3098AB;
}

#aos_us-password-reset #password-reset-popup div button.submit:hover {
	background-color: #64b4be;
}

#aos_us-password-reset #password-reset-popup div button.cancel:hover {
	background-color: rgb(163, 163, 163);
}