.page-auth {
	font-weight: 300;
	font-size: 14px;
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.page-auth__wrapper {
	background: linear-gradient(180deg, #262626 0%, #5e5e5c 42.5%, #a4a4a4 99.99%, #dedede 100%);
	border-radius: 25px;
	padding-top: 25px;
	position: relative;
	padding: 44px 56px 0 52px;
}

.page-auth__top {
	margin-bottom: 123px;
	display: flex;
	justify-content: space-between;
}

.page-auth__links {
	display: flex;
	column-gap: 35px;
}

.page-auth__links-item:hover {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}

.page-auth__title {
	font-weight: 500;
	font-size: 48px;
	margin-bottom: 34px;
}

.page-auth__form {
	max-width: 509px;
	width: 100%;
	margin-bottom: 228px;
}
.page-auth__cta {
	margin-bottom: 23px;
}
.page-auth__info {
	margin-bottom: 20px;
	font-size: 16px;
}
.page-auth__question {
}
.page-auth__registration {
	text-decoration: underline !important;
	text-underline-offset: 4px;
}

.page-auth__registration:hover {
	color: #2da5f6;
}

.page-auth__form-fields {
	display: flex;
	flex-direction: column;
	row-gap: 13px;
	margin-bottom: 17px;
}

.page-auth__form-fields input{
	appearance: none;
	display: block;
	backdrop-filter: blur(15px);
	background: rgba(255, 255, 255, 0.2);
	padding: 15px 19px;
	border-radius: 14px;
	color: #fff;
}

.page-auth__form-fields input:focus-visible {
	outline: 2px solid #fff;
	caret-color: #fff;
}

.page-auth__save {
}

.custom-checkbox {
	display: flex;
	column-gap: 6px;
	align-items: center;
	margin-bottom: 57px;
}

.custom-checkbox__field {
	appearance: none;
	width: 19px;
	height: 19px;
	border: 1px solid #fff;
	position: relative;
	border-radius: 3px;
}

.custom-checkbox__field:checked::before {
	content: '';
	width: 11px;
	height: 11px;
	position: absolute;
	top: 19%;
	left: 19%;
	background-color: #fff;
}

.custom-checkbox__text {
}

.page-auth__submit {
	appearance: none;
	display: block;
	border-radius: 32px;
	padding: 14px 37px;
	max-width: 218px;
	width: 100%;
	backdrop-filter: blur(15px);
	background-color: #1270b0;
	color: inherit;
	margin: 0 auto;
	transition: 0.1s 0s ease-in;
	border: 1px solid transparent;
	margin-bottom: 13px;
}

.page-auth__submit:hover {
	background-color: #0a3e60;
}

.page-auth__submit:active {
	background-color: transparent;
	border: 1px solid #1270b0;
}

.page-auto__remember {
	display: block;
	max-width: fit-content;
	margin: 0 auto;
}
.page-auth__image {
	max-width: 948px;
	position: absolute;
	top: 0;
	right: -12px;
	height: 100%;
	width: 100%;
	object-fit: cover;
	pointer-events: none;
}