html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
}

*,
*::before,
*::after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.login-page-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.login-page {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	padding: 20px;
	background: #fff;
}

.login-page-logo {
	width: 100%;
	max-width: 320px;
	height: 200px;
	margin-bottom: 40px;
}

.login-page-form {
	width: 100%;
	max-width: 400px;
}

.login-page-label {
	display: block;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: #000;
}

.login-page-input {
	width: 100%;
	height: 50px;
	padding: 16px 20px;
	border: 1px solid #cecece;
	border-radius: 4px;
	background-color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 14px;
	line-height: 16px;
	color: #8c8c8c;
	-webkit-appearance: none;
}

.login-page-input:hover {
	border-color: #292929;
}

.login-page-input:focus {
	outline: 0;
	border-color: #0068ec;
}

.login-page-input::-ms-clear {
	display: none;
}

.login-page-input::-webkit-input-placeholder {
	opacity: 0.5;
}

.login-page-input::-moz-placeholder {
	opacity: 0.5;
}

.login-page-input:-ms-input-placeholder {
	opacity: 0.5;
}

.login-page-input-wrapper {
	position: relative;
}

.login-page-input-wrapper.without-label {
	margin-top: 25px;
}

.login-page-message {
	position: absolute;
	bottom: 52px;
	left: 0;
	font-size: 14px;
	line-height: 16px;
	color: #38c768;
	white-space: nowrap;
}

.login-page-message.is-error {
	color: #ff5252;
}

.login-page-btn-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.login-page-btn {
	margin-top: 20px;
	padding: 12px 25px;
	border: 0;
	border-radius: 20px;
	font-size: 14px;
	color: #fff;
	background-color: #0068ec;
	outline: 0;
	cursor: pointer;
}

.login-page-btn:hover {
	background-color: #0171ff;
}

.login-page-btn:disabled {
	background-color: #cecece;
	cursor: default;
}

.login-page-btn-back {
	margin-bottom: 25px;
	padding: 0;
	border: 0;
	border-radius: 20px;
	font-size: 14px;
	line-height: 16px;
	color: #434343;
	background-color: #fff;
	outline: 0;
	cursor: pointer;
}

.login-page-btn-back:hover {
	color: #8c8c8c;
}

.login-page-checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 20px 0;
	font-size: 14px;
	line-height: 18px;
	color: #8c8c8c;
	cursor: pointer;
}

.login-page-checkbox:hover {
	color: #292929;
}

.login-page-checkbox input {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	height: 1px;
	width: 1px;
	word-wrap: normal;
}

.login-page-checkbox-icon {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	border: 1px solid #8c8c8c;
}

.login-page-checkbox input:checked ~ .login-page-checkbox-icon {
	background: url('../img/icon-check.svg') #efefef;
}

.login-page-btn-link {
	padding: 0;
	border: 0;
	font-size: 14px;
	line-height: 16px;
	color: #0068ec;
	background-color: #fff;
	outline: 0;
	cursor: pointer;
}

.login-page-btn-link:hover {
	color: #3f3395;
}

.field-container {
	position: relative;
}

#password {
	padding-right: 50px;
}

#password::-ms-reveal {
	display: none;
}

#buttonReveal {
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 10px;
	z-index: 1;
}

#buttonReveal > svg {
	fill: #cecece;
}

#buttonReveal:hover > svg {
	fill: #000;
}

#buttonReveal.active::before {
	background-color: #cecece;
	content: '';
	height: 2px;
	left: 0px;
	position: absolute;
	top: 13px;
	transform: rotate(45deg);
	width: 30px;
	z-index: 2;
}

#buttonReveal.active:hover::before {
	background-color: #000;
}

.hidden {
	display: none !important;
}

.language-select {
	position: absolute;
	top: 50px;
	right: 50px;
	width: 80px;
	height: 40px;
	border-radius: 20px;
	background-color: #1866f5;
	cursor: pointer;
}

.language-select.is-open::after {
	top: 17px;
	border-width: 0 6px 6px;
	border-color: transparent transparent #629aff;
}

.language-select::after {
	content: '';
	position: absolute;
	top: 18px;
	right: 12px;
	border-width: 6px 6px 3px;
	border-color: #629aff transparent transparent;
	border-style: solid;
	pointer-events: none;
}

.language-select-value {
	padding-left: 20px;
	padding-right: 30px;
	font-size: 14px;
	line-height: 40px;
	color: #fff;
}

.language-select-menu {
	display: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 4px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
	background-color: #fff;
}

.language-select.is-open .language-select-menu {
	display: block;
}

.language-select-option {
	padding: 10px 20px;
	font-size: 14px;
	line-height: 22px;
	color: #8c8c8c;
}

.language-select-option:hover,
.language-select-option.is-active {
	background-color: #f5f5f5;
}

.popup-overlay {
	position: fixed;
	z-index: 10;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.3);
}

/* Fix for IE11 */
.popup-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 540px;
}

.popup {
	position: relative;
	width: 100%;
	max-width: 540px;
	max-height: 98vh;
	margin: 20px;
	padding: 40px;
	background-color: #fff;
	font-size: 16px;
	line-height: 20px;
}

.popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	padding: 10px;
	border: 0;
	outline: 0;
	background-color: transparent;
	cursor: pointer;
}

.popup-close::before,
.popup-close::after {
	content: '';
	position: absolute;
	top: 15px;
	left: 5px;
	width: 20px;
	height: 2px;
	background-color: #000;
}

.popup-close::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.popup-close::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.popup-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.app-select-title {
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}

.app-select {
	position: relative;
	width: 100%;
	max-width: 200px;
	height: 54px;
	margin-bottom: 30px;
	background-color: #fff;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.app-select.is-open::after {
	top: 23px;
	border-width: 0 6px 6px;
	border-color: transparent transparent #999;
}

.app-select::after {
	content: '';
	position: absolute;
	top: 24px;
	right: 16px;
	border-width: 6px 6px 3px;
	border-color: #999 transparent transparent;
	border-style: solid;
	pointer-events: none;
}

.app-select-value {
	padding: 10px 20px;
	padding-right: 40px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 4px;
	font-size: 14px;
	line-height: 32px;
	color: #8c8c8c;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-select-value:hover {
	border-color: #000;
}

.app-select.is-open .app-select-value {
	border-color: #1e69f2;
}

.app-select-menu {
	display: none;
	max-height: 200px;
	overflow-y: auto;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 4px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
	background-color: #fff;
}

.app-select.is-open .app-select-menu {
	display: block;
}

.app-select-option {
	padding: 10px 20px;
	font-size: 14px;
	line-height: 32px;
	color: #8c8c8c;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-select-option:hover,
.app-select-option.is-active {
	background-color: #f5f5f5;
}

.app-select-btn {
	width: 100%;
	max-width: 200px;
	padding: 18px;
	border: 0;
	outline: 0;
	border-radius: 4px;
	background-color: #0068ec;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	cursor: pointer;
}

.app-select-btn:hover {
	background-color: #0171ff;
}

@media screen and (min-width: 450px) {
	.app-select,
	.app-select-btn {
		max-width: 300px;
	}
}

.options-step-btn-wrapper {
	padding-top: 10px;
}

#optionsBtn {
	cursor: pointer;
	color: #2c75ff;
}

#optionsBtn:hover {
	color: #091c62;
}

.methodBtn {
	width: 100%;
	cursor: pointer;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	outline: none;
	max-width: 400px;
	border: 1px solid #cecece;
	height: 40px;
	background-color: #ffffff;
	-webkit-transition: border 0.2s, color 0.2s, background-color 0.2s;
	transition: border 0.2s, color 0.2s, background-color 0.2s;
	border-color: #cecece;
	color: #000000;
	margin-bottom: 20px;
	border-radius: 3px;
}

.methodBtn:hover {
	color: #fff;
	background-color: #2c75ff;
	border-color: #2c75ff;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.spinner {
	display: inline-block;
}

.spinner svg {
	animation: spin 1s linear infinite;
}
