@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/opensans-regular-webfont.eot');
	src: url('../fonts/opensans-regular-webfont.eot?#iefix')
			format('embedded-opentype'),
		url('../fonts/opensans-regular-webfont.woff') format('woff'),
		url('../fonts/opensans-regular-webfont.ttf') format('truetype'),
		url('../fonts/opensans-regular-webfont.svg#open_sansregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Open Sans Light';
	src: url('../fonts/opensans-light-webfont.eot');
	src: url('../fonts/opensans-light-webfont.eot?#iefix')
			format('embedded-opentype'),
		url('../fonts/opensans-light-webfont.woff') format('woff'),
		url('../fonts/opensans-light-webfont.ttf') format('truetype'),
		url('../fonts/opensans-light-webfont.svg#open_sanslight') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Open Sans Semibold';
	src: url('../fonts/opensans-semibold-webfont.eot');
	src: url('../fonts/opensans-semibold-webfont.eot?#iefix')
			format('embedded-opentype'),
		url('../fonts/opensans-semibold-webfont.woff') format('woff'),
		url('../fonts/opensans-semibold-webfont.ttf') format('truetype'),
		url('../fonts/opensans-semibold-webfont.svg#open_sanssemibold')
			format('svg');
	font-weight: normal;
	font-style: normal;
}

:root {
	--primary: #2574db;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	height: 100%;
	font-family: Open Sans Light, Trebuchet MS, Trebuchet MS, sans-serif;
}

#page {
	display: flex;
	height: 100%;
	width: 100%;
}

.half_page {
	display: flex;
	height: 100%;
	width: 50%;
}

.page_left {
	background: url('../images/reset_image_left.png') no-repeat center
		center/cover;
}

.page_right {
	justify-content: center;
	align-items: center;
	background: #2574db;
}

.reset_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 36px 24px;
	width: 360px;
	border-radius: 4px;
	background-color: #fff;
	text-align: center;
}

.logo {
	width: 100%;
	max-width: 180px;
}

.reset_subtitle {
	font-size: 20px;
	color: #6b7786;
	font-weight: bold;
}

.reset_description {
	font-size: 16px;
	color: #6b7786;
}

.reset_message {
	font-size: 12px;
	color: #6b7786;
	white-space: pre-line;
}

.form_container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 312px;
}

.form_input_container {
	width: 100%;
	max-width: 312px;
}

.form_input {
	padding: 10px 16px;
	border: 1px solid #6b7786;
	border-radius: 4px;
	outline: none;
	font-size: 14px;
}

.form_input--default {
	border: 1px solid #6b7786;
}

.form_input--error {
	border: 1px solid #e60c51;
}

.form_input--focused {
	border: 1px solid var(--primary);
}

.outlined_input {
	border: 1px solid rgba(0, 0, 0, 0.8);
	border-radius: 4px;
	padding: 4px;
}

.button_spacer {
	padding: 5px;
}

.spacer {
	padding: 16px;
}

.fullwidth {
	width: 100%;
}

.brand {
	background-color: var(--primary);
	color: #fff;
}

.button {
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 8px 16px;
	color: #fff;
	background-color: var(--primary);
	cursor: pointer;
}


.button--outlined {
	border: 1px solid #6b7786;
	color: #6b7786;
	background: none;
}

.button--disabled {
	pointer-events: none;
	color: #fff;
	background-color: #9fa9b7;
}

.error {
	color: #e60c51;
	border: 1px solid #e60c51;
}

.notice {
	border: none;
	font-size: 12px;
	padding: 8px;
}

.check-password-icon {
	height:10px;
	width: 10px;
	display:inline-block;
	position: relative;
	margin-bottom: 10px;
}

#validate_min_len {
	display: inline;
}

.validate_item {
	font-size: 19px;
	font-weight: 900;
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	cursor: pointer;
	border-radius: 6px;
	width: 32px;
}

.validate_item .tooltip-text{
	display: none;
	width: 125px;
	background-color: #555;
	color: #fff;
	font-size: 12px;
	text-align: center;
	padding: 2px 0;
	border-radius: 6px;

	position: absolute;
	z-index: 9000; !important
	margin-left: -45px;
}

.validate_item:hover {
	background-color: #e0e3e6;
}

.validate_item:hover .tooltip-text {
	display: block; !important
	opacity: 1;
}

.valid-password-state {
	background: transparent url(../images/blueCheck.png) no-repeat center center;
	background-size: 10px 10px;
}

.default-password-state {
	display: none;
}

.validate_group {
	padding-top:15px;
	display: inline-block;
}

.validate_row {
	padding-top: 5px;
	display: inline-block;
}

.validate_valid_color {
	color: var(--primary);
	background-color: #e2eefd;
}

.validate_default_color {
	color: #333333;
	background-color: #ffffff;
}

.min_password_len {
	display: inline-block;
}

input[type=password]:not(:placeholder-shown)
{
	font: large Verdana,sans-serif;
	letter-spacing: 1px;
}

.password_dont_match {
	text-align: left;
	margin-left: 15px;
	font-size: 12px;
	color: #e60c51;
	white-space: pre-line;
}
