

/* Start:/local/templates/rich/css/auth-page.css?17842707976832*/
.bx-header {
	display: none !important;
}

div .bx-content-section {
	margin-bottom: 0; !important;
}

.auth-page {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 60px 16px 80px;
	background-color: #f5f7fa;
	background-image: url(/images/bg_pattern.png);
	background-repeat: repeat;
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.auth-page__container {
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
}

.auth-page__card {
	width: 100%;
	padding: 48px 40px;
	border-radius: 28px;
	background-color: #ffffff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.auth-page__title {
	margin: 0 0 12px;
	font-family: "Ubuntu", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #111111;
}

.auth-page__text {
	margin: 0 0 32px;
	font-family: "Ubuntu", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	color: #777777;
}

.auth-page__notice {
	margin-bottom: 24px;
	padding: 16px 20px;
	border-radius: 16px;
	font-family: "Ubuntu", sans-serif;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}

.auth-page__notice--error {
	background-color: #fff0f3;
	color: #d85e76;
}

.auth-page__notice--success {
	background-color: #f0fdf4;
	color: #166534;
}

.auth-page__notice--info {
	background-color: #eff6ff;
	color: #1e40af;
}

.auth-page__notice.is-hidden {
	display: none;
}

/* Tabs */
.auth-tabs {
	display: flex;
	background-color: #f0f2f5;
	border-radius: 16px;
	padding: 4px;
	margin-bottom: 32px;
}

.auth-tabs__btn {
	flex: 1;
	height: 44px;
	border: none;
	background: transparent;
	border-radius: 12px;
	font-family: "Ubuntu", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #555555;
	cursor: pointer;
	transition: all 0.2s ease;
}

.auth-tabs__btn.is-active {
	background-color: #ffffff;
	color: #111111;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.auth-tab-content {
	display: none;
}

.auth-tab-content.is-active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Form */
.auth-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.auth-form__group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.auth-form__input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.auth-form__input-wrapper .auth-form__input {
	padding-right: 48px;
}

.auth-form__clear-btn {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	background: transparent;
	color: #999999;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.auth-form__clear-btn:hover {
	color: #d85e76;
}

.auth-form__label {
	font-family: "Ubuntu", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #333333;
	padding-left: 4px;
}

.auth-form__required {
	color: #d85e76;
	margin-left: 4px;
}

.auth-form__input {
	width: 100%;
	height: 56px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 16px;
	background-color: #f5f7fa;
	font-family: "Ubuntu", sans-serif;
	font-size: 16px;
	color: #111111;
	transition: all 0.2s ease;
}

.auth-form__input::placeholder {
	color: #aaaaaa;
}

.auth-form__input:hover {
	background-color: #eeeeee;
}

.auth-form__input:focus {
	background-color: #ffffff;
	border-color: #d85e76;
	outline: none;
	box-shadow: 0 0 0 4px rgba(216, 94, 118, 0.15);
}

.auth-form__input--code {
	text-align: center;
	letter-spacing: 0.2em;
	font-size: 20px;
	font-weight: 600;
}

.auth-form__note {
	font-family: "Ubuntu", sans-serif;
	font-size: 13px;
	line-height: 1.4;
	color: #777777;
	padding-left: 4px;
}

.auth-form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-family: "Ubuntu", sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #555555;
	cursor: pointer;
}

.auth-form__checkbox-input {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 0;
	accent-color: #d85e76;
	cursor: pointer;
}

.auth-form__checkbox-label a {
	color: #d85e76;
	text-decoration: underline;
}

.auth-form__checkbox-label a:hover {
	color: #c04d65;
}

.auth-form__captcha {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.auth-form__captcha-image {
	width: 100%;
	max-width: 254px;
	height: auto;
}

.auth-form__submit {
	width: 100%;
	height: 56px;
	margin-top: 8px;
	border: none;
	border-radius: 16px;
	background-color: #d85e76;
	font-family: "Ubuntu", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #ffffff;
	cursor: pointer;
	transition: all 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.auth-form__submit:hover {
	background-color: #c04d65;
}

.auth-form__submit:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(216, 94, 118, 0.3);
}

.auth-form__submit:active {
	transform: scale(0.98);
}

.auth-form__submit--outline {
	background-color: transparent;
	border: 2px solid #d85e76;
	color: #d85e76;
}

.auth-form__submit--outline:hover {
	background-color: #fff0f3;
}

.auth-form__footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	font-family: "Ubuntu", sans-serif;
	font-size: 15px;
	line-height: 1.4;
	text-align: center;
	color: #555555;
}

.auth-form__link {
	color: #111111;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease;
}

.auth-form__link:hover {
	color: #d85e76;
}

.auth-form__divider {
	display: flex;
	align-items: center;
	text-align: center;
	color: #aaaaaa;
	font-size: 13px;
	margin: 24px 0;
}

.auth-form__divider::before,
.auth-form__divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #eeeeee;
}

.auth-form__divider:not(:empty)::before {
	margin-right: 16px;
}

.auth-form__divider:not(:empty)::after {
	margin-left: 16px;
}

.auth-form__policy {
	margin: 24px 0 0;
	font-family: "Ubuntu", sans-serif;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
	color: #999999;
}

.auth-form__secure-note {
	display: none;
	font-size: 12px;
	line-height: 1.4;
	color: #999999;
	padding-left: 4px;
}

.auth-form__secure-note.is-visible {
	display: block;
}

.auth-page-layout .workarea {
	overflow-x: hidden;
}

.auth-page-layout #pagetitle,
.auth-page-layout #navigation {
	display: none;
}

.auth-page-layout .bx-content-section {
	margin-bottom: 0;
}

@media (max-width: 480px) {
	.auth-page {
		padding: 24px 16px 40px;
		align-items: flex-start;
	}

	.auth-page__card {
		padding: 32px 24px;
		border-radius: 24px;
	}

	.auth-page__title {
		font-size: 24px;
	}
	
	.auth-form__input,
	.auth-form__submit {
		height: 52px;
	}
}

/* End */
/* /local/templates/rich/css/auth-page.css?17842707976832 */
