.login-wrapper {
	width: 100vw;
	min-height: 100vh;
	background-color: var(--color-bg-light);

	background-image: url("./redesign/img/welcome-screen-bg.png");
	background-size: 800px 800px;
	background-position: center calc(50% - 10px);
	background-repeat: no-repeat;
}

.login {
	padding: var(--spacing-container-sm);
	padding-bottom: 0;
}

.logo-login {
	display: flex;
	justify-content: flex-start;

	margin-bottom: 16px;

	@media all and (min-width: 768px) {
		margin-bottom: 0;
	}
}

.form-header-title {
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	color: var(--text-main-color);
}

.input-container {
	display: flex;
	align-items: center;

	gap: var(--spacing-md);

	border-radius: 30px;
	border: 1px solid var(--color-white);
	background: var(--color-white);

	overflow: hidden;
	padding: 0 var(--spacing-lg);

	box-shadow: var(--shadow-input-text);
}

.input-container:focus-within {
	box-shadow: none;
	border-color: var(--border-color);
}

.input-container .input-text-login {
	flex: 1;
	padding-left: 45px;
}

.input-container .tooltip {
	/*padding: 8px;*/
	padding: 15px;

	width: 10px;
	height: 10px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;
	/*border: 1px solid var(--primary-color);*/
	background-color: unset;
}

.login-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.login-form {
	display: flex;
	flex-direction: column;
	max-width: 552px;
	margin: 0 auto;

	border-radius: 16px;
	overflow: hidden;

	box-shadow: 0 60px 120px rgba(38, 51, 77, 0.1);
}

.login-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 18px;

	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);

	background-color: var(--color-white);

	@media all and (min-width: 768px) {
		padding: 35px 70px;
	}
}

/*Login flow screens*/
.login-content .table-new-gemba tbody {
	gap: 0px;
}

.login-content h2 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	color: var(--text-main-color);

	margin: 12px 0 4px 0;

	text-align: center;
}

.login-content .input-label {
	display: none;
}


.login-lang {
	position: absolute;
	top: 30px;
	right: 16px;
	width: 34px;
	height: 34px;
	margin: 0;
	float: right;
}


.login-lang .header-language {
	padding: 0;
	margin: 0 !important;
}

.header-language-login {
	font-size: 13px;
	font-weight: 400;
	color: #000000;
	line-height: 34px;
	margin-right: 20px;
	text-decoration: none;
	background-image: url("img/arrow_down.svg");
	background-repeat: no-repeat;
	background-position: right;
	background-size: 10px 6px;
}

.login-lang .header-language .dropdown-sm {
	right: 0;
	left: auto;
}

.input-login-bg {
	background: url(img/login_username.svg) no-repeat;
	background-size: 38px 22px;
	position: absolute;
	z-index: 9;
	width: 38px;
	height: 22px;
}

.input-user-password {
	padding-left: 38px;
}

.input-password-bg {
	margin-top: 7px;
	background: url(img/login_password.svg) no-repeat;
	background-size: 40px 15px;
	position: absolute;
	z-index: 10;
	width: 40px;
	height: 22px;
}

.login-bank {
	width: 100%;
	padding: 0px 0 20px 0;
	color: #000000;
}

.login-footer, .form-header {
	display: flex;
	justify-content: center;

	padding: 24px;

	gap: 20px;

	background: var(--background-color);
}

.login-footer {
	flex-direction: column;

	@media all and (min-width: 768px) {
		flex-direction: row;
	}
}


.appbuttons {
	display: flex;
	justify-content: center;

	padding: var(--spacing-container-sm);

	@media all and (min-width: 768px) {
		padding: 0;
	}
}

.appbuttons-link {
	flex: 1;
	max-width: 220px;
}

.appbuttons-link img {
	width: 100%;
	object-fit: contain;
}

@media all and (max-height: 533px) {
	h1 {
		display: none;
	}
}

@media all and (max-width: 1024px) {
	.login-lang {
		position: absolute;
		top: -7px;
		right: 40px;
		width: 34px;
		height: 34px;
		margin: 0 20px 0 0;
		float: right;
	}
}

@media all and (max-width: 768px) {
}


@media all and (max-width: 640px) {
	.login-lang {
		position: absolute;
		top: -6px;
		right: 32px;
		width: 34px;
		height: 34px;
		float: right;
	}
}

@media all and (max-width: 440px) {
	.footer-call-local, .footer-call-ww {
		float: none;
	}

	.footer-call-local {
		margin: 0 0 10px 0;
	}
}

@media all and (min-width: 321px) and (max-width: 399px) {
	#html_element {
		transform: scale(0.88);
		-webkit-transform: scale(0.88);
		transform-origin: 0 0;
		-webkit-transform-origin: 0 0;
		width: 264px;
	}
}

@media all and (max-width: 320px) {
	#html_element {
		transform: scale(0.77);
		-webkit-transform: scale(0.77);
		transform-origin: 0 0;
		-webkit-transform-origin: 0 0;
		width: 230px;
	}
}

.registration-successful {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 20px;
}

.registration-successful-title {
	margin-bottom: 24px;
	line-height: 48px;
	font-size: 48px;
	font-weight: 700;
}

