#login-panel{
	font-family: 'Inter';
    width: 35%;
	margin-top: 40px;
    border-radius: 15px;
    background-color: #ffffff;
    background-image: url('/img/periva-logo-green.svg');
    background-repeat: no-repeat;
    background-position: center 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
	box-shadow: 5px 5px 20px 0px #00000040;
}
#login-form{
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 150px;
}
#login-background{
    position: relative;
    z-index: 1;
	height: 100%;
    width: 100%;
}
.parallax-background{
	position: absolute;
    top: -10%;
    left: -10%;
    width: 110%;
    height: 110%;
	background-image: url('/img/periva-bg.png');
    background-size: cover;
    background-position: center;
    transform: translate(0, 0) rotateX(0deg) rotateY(0deg) scale(1);
    transition: transform 0.1s ease-out; 
    perspective: 1000px; 
}
.input-label{
	font-size: 15px;
	line-height: 18.15px;
	margin-bottom: 10px;
	margin-top: 0;
	font-weight: 600;
	letter-spacing: 0.1rem;
}
.input-box input{
	width: 100%;
    height: 48px;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: 10px 10px;
    border: 1px solid #E5E7EB;
    padding: 0px 0px 0px 0px;
	text-indent: 16px;
	letter-spacing: 0.1rem;
}
.input-box.login-code{
	display: flex;
}
#password{
	font-size: 16px;
	letter-spacing: 0.3rem;
}

.login-password {
	position: relative;
}

.toggle-password-show {
	transition: var(--Ease-transition);
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 13px;  
	width: 24px;
	height: 24px;
	background-image: url(/img/eye-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.5;
}
  
.toggle-password-show:hover{
	opacity: 1;
	background-image: url(/img/eye-closed-icon.svg);
}

/* Language switcher container */
/* #system_language {
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
} */

#system_language{
	transition: var(--Ease-transition);
    width: 128px;
    background-color: var(--White);
    border: 1px solid var(--Light-grey-1);
    border-radius: var(--Basic-Forms-Input-Border-Radius);
    background-image: url(/img/up-down.svg);
    background-repeat: no-repeat;
    background-position: right 16px top 16px;
    background-size: 22px 22px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
}
 
.system_language_value, .system_language-list-item {
	padding: 16px 16px 16px 45px;
	cursor: pointer;	
}
.system_language-item-selected {	
	font-weight: bold;
}

.language_switcher_flags {
	margin-left: auto;
	margin-right: auto;
	display: inline-flex;
	gap: 18px;
}

.language_switcher_flag {
	cursor: pointer;
	width: 18px;
}

/* .login-username{
	background-image: url('/img/user-icon.svg');
} */
/* .login-password{
	background-image: url('/img/password_input.svg');
}
.login-email{
	background-image: url('/img/email_input.svg');
} */
/* .login-code{
	background-image: url('/img/code_input.svg');
} */
#rec_seccode{
	float: left;
}
.security-code{
	display: block;
	padding-top: 10px;
	padding-bottom: 15px;
	margin-left: 30px;
}
#login, #recover_password, #change_password	{
	transition: 0.2s linear;
	background-color: #000000;
	color: white;
	text-align: center;
	padding: 20px;
	font-weight: 600;
	border-radius: 15px;
	font-size: 18px;
	cursor: pointer;
	opacity: 1;
}
#login:hover {
	transition: 0.2s linear;
	opacity: 0.8;
}
#recover_password:hover {
	transition: 0.2s linear;
	opacity: 0.8;
}
.switch{
	width: 40px;
    height: 20px;
    padding-top: 3px;
    padding-left: 3px;
    border-radius: 10px;
    background-color: #F0F0F0;
    cursor: pointer;
    border: 1px solid black;
    margin: auto;
}
.switch:hover {
	transition: 0.2s linear;
	background-color: #f416258f;
}
.switch_label{
	margin:auto;
	line-height: 26px;
}
.switch_knob{
	width: 16px;
	height: 16px;
	border-radius: 10px;
	background-color: #C4C4C4;
}

.switch-selected .switch_knob{
	background-color: #F41626;
	margin-left: 20px;
}
#remember_me_panel{
	width: 100%;
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 600;
}
#remember_me{
	float: left;
	margin-right: 10px;
}
#password_recover, #login_site{
	display: block;
	text-decoration: none;
	width: 100%;
	margin-top: 30px;
	text-align: center;
	color: #000000;
	font-size: 16px;
}
#login-error{
	width: 100%;
	font-size: 16px;
	text-align: left;
	color: #F41626;
	font-weight: bold;
	margin-top: 10px;
}
#recover_panel #login-error{ 
	height: 30px;
	line-height:30px; 
}
#recover_panel #login-error.success{color: #565656;}
#recover_panel{
	margin-top: 150px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

@media (max-width: 1920px) {

	#login-panel {
		width: 35%;
		max-height: 73%;
		transform: translate(-50%, -55%);
		background-size: 14em;
	}

	.input-label {
		font-size: 0.8em;
		line-height: 1.1;
	}

	#login-form {
		margin-top: 6em;
		gap: 18px;
	}

	.input-box input {
		height: 2.4em;
    	border-radius: 0.5em;
		font-size: 1em;
    	line-height: 1.4;
	}

	#login, #recover_password, #change_password {
		padding: 0.5em;
		border-radius: 0.5em;
		line-height: 2;
	}

	#password_recover, #login_site {
		margin-top: 1em;
		font-size: 1em;
		text-transform: uppercase;
	}

	.toggle-password-show {
		right: 1em;
    	top: 0.6em;
	}

	#recover_panel {
		margin-top: 2em;
	}
}

@media screen and (max-width: 1024px) {
	#login-panel {
		width: 60%;
	}
}