body {
	display: flex;
	justify-content: center;
	align-items: center;
}

.login_block {
	width: 350px;
}

.login_form {}

.login_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.login_logo {
	font-weight: 600;
	font-size: 16px;
}

.login_settings {
	display: flex;
	align-items: center;
}

.language-select {
	position: relative;
	display: inline-block;
}

.language-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: var(--input-bg);
	border: 1px solid var(--input-border);
	border-radius: 10px;
	color: var(--text-color);
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.language-btn i {
	font-size: 15px;
	color: var(--text-color);
}

.language-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	background: var(--input-bg);
	border: 1px solid var(--input-border);
	border-radius: 8px;
	list-style: none;
	margin: 0;
	padding: 6px 0;
	width: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.language-dropdown.open {
	display: block;
	animation: fadeIn 0.2s ease;
}

.language-dropdown li {
	margin: 0;
}

.language-dropdown li button {
	width: 100%;
	padding: 8px 14px;
	background: none;
	border: none;
	color: var(--text-color);
	text-align: left;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.language-dropdown li button:hover {
	background-color: var(--menu-hover);
}

.language-btn .arrow {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.language-select.open .arrow {
	transform: rotate(180deg);
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

.login_theme button {
	padding: 12px 13px 13px 12px;
}

.login_main label {
	margin-bottom: 5px;
}

.login_main input {
	width: 100%;
}

.login_title {
	font-weight: 600;
	font-size: 28px;
	line-height: 100%;
	margin-bottom: 25px;
	line-height: 100%;
}

.subtitle_2fa {
	line-height: 20px;
}

.subtitle_2fa a {
	color: var(--text-color);
}


.login_email {
	margin-bottom: 25px;
}

.login_password {
	margin-bottom: 25px;
}

.login_password input {
	padding: 11px 35px 11px 15px;
}

.login_button button {
	width: 100%;
	font-weight: 600;
}
.login_help{
	width: 100%;
	font-weight: 600;
	border: 1px solid var(--input-border);
    border-radius: 10px;
    padding: 11px;
    cursor: pointer;
}
.login_help a{
	color: #fff;
	text-decoration: none;
}

.password-wrapper {
	position: relative;
}

.toggle-password {
	padding: 0px;
	background-color: inherit;
	border-radius: 0;
}

.password-wrapper .toggle-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	font-size: 18px;
}

#theme-toggle {}

#theme-toggle img {
	transition: transform 0.3s ease;
}

.code-inputs {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	margin-bottom: 15px;
}

.code-inputs input {
	width: 55px;
	height: 55px;
	font-size: 22px;
	text-align: center;
	border: 2px solid var(--input-border);
	border-radius: 10px;
	outline: none;
	transition: border-color 0.3s;
	color: var(--text-color);
}

.code-inputs input:focus {
	border-color: var(--bg);
}

.error {
	    padding-top: 10px;
    color: #d60014;
}
.form-errors{
	padding-top: 5px;
    color: #d60014;	
}