
/*
 * Password Reset page
 ***************************************************/

.headerText {
	color: #414B50;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}

.infoText {
	color: #414B50;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.emailEntry {
	max-width: 22em;
}

.passwordSubmitButton .text {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
}

.passwordSubmitButton .bgBtn {
	height: 2.5em;
	width: 10em;
	border-radius: 4px;
	border: 1px solid #DBDBDB;
	margin-top: 2.1em;
	color: white;
}

#submitButton, #startOverButton {
	cursor: pointer;
	background-color: #0050AA;
}

#new2FA {
	cursor: pointer;
	color: #0c4de9;
}

.passwordInputText .bg {
	height: 2.5em;
	border: 1px solid #DBDBDB;
	border-radius: 8px;
	padding-left: .5em;
	width: 18em;
}

.twoFAInputText {
	font-size: 14px;
}

.twoFAInputText .bg {
	height: 2.5em;
	border: 1px solid #DBDBDB;
	border-radius: 8px;
	padding-left: .5em;
	width: 13em;
}

.challengeInputText .bg {
	height: 2.5em;
	border: 1px solid #DBDBDB;
	border-radius: 8px;
	padding-left: .5em;
	width: 24em;
}

.resetInputText .bg {
	height: 2.5em;
	border: 1px solid #DBDBDB;
	border-radius: 8px;
	padding-left: .5em;
	width: 13em;
}

.successInputText {
	max-width: 44em;
}

.challengeQuestionText {
	padding: 0 0 1em .5em;
	text-align: left;
}


.labelText {
	height: 2.6em;
	color: #414B50;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4em;
	padding-top: .8em;
	padding-left: .5em;
	text-align: left;
}

.radioInline {
	padding-right: 1em;
}

.passwordContentError {
	color: red;
	text-align: center;
}

.error {
	color: red;
}

.affectedApps li {
	margin-left: 2.5em;
}

.passwordCriteria {
	width: 25em;
	color: #414B50;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.6em;
	padding: .2em 0 .2em 3em;
	text-align: left;
}

.newPasswordCritlist {
	padding: .1em 0 .1em 0;
}

hr {
	width: 31em;
}

.pwCrit1Pass, .pwCrit2Pass, .pwCrit3Pass, .pwCrit4Pass, .pwCrit5Pass,
.pwCrit1Fail, .pwCrit2Fail, .pwCrit3Fail, .pwCrit4Fail, .pwCrit5Fail {
	display: none;
}

#oldPasswordBlock {
	display: none;
}

@media (max-width: 1800px) {
	.emailEntry {
		max-width: 20em;
	}
	.twoFAInputText {
		font-size: 14px;
	}
}

@media (max-width: 1500px) {
	.emailEntry {
		max-width: 20em;
	}
}

@media (max-width: 1200px) {
	.emailEntry {
		max-width: 18em;
	}
}

@media (max-width: 900px) {
	.emailEntry {
		max-width: 12em;
	}
	.challengeInputText .bg {
		width: 22em;
	}
	.successInputText {
		max-width: 22em;
	}
	.affectedApps li {
		margin-left: .5em;
	}
}

@media (max-width: 700px) {
	.emailEntry {
		max-width: 10em;
	}
	.challengeInputText .bg {
		width: 18em;
	}
	.successInputText {
		max-width: 22em;
	}
	.affectedApps li {
		margin-left: .5em;
	}
}

.centerBlock {
	text-align: center;
}

.centerContent {
	display: inline-block;
}

.affectedApps {
	text-align: left;
}

.successInputText li {
	text-align: left;
}


/***********************************************************************/
/* Loading spinner
/***********************************************************************/
.spinner {
	margin-top: 3em;
	width: 50px;
	height: 40px;
	font-size: 10px;
}

.spinner > div {
	background-color: #0050AA;
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
	20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
	0%, 40%, 100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}