:root {

	--gutter: 1.5rem;

}

.auth_box {
	background: #ffffff;
	box-shadow: 0px 0px 200px #F2F6FF;
	padding: 0px;
	border-radius: 75px;
	overflow: hidden;
}

/* FORM */

form {
	padding: calc(var(--gutter) * 3) calc(var(--gutter) * 3) calc(var(--gutter) * 2) calc(var(--gutter) * 3);
}

.form_header {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
	gap: calc(var(--gutter) * 2);
}

.form_header .form_logo {
	height: 45px;
}

.form_header h1.title {
	line-height: 100%;
	margin-bottom: 5px;
}

hr.divider {
	margin: 20px 0;
	padding: 0;
	opacity: 1;
	border-color: #F5F5F5;
}

.form_buttons {
	margin-top: 20px;
}

.form_buttons a.link {
	text-align: center;
	font-weight: 400;
	font-size: 13px;
}

.form_footer p.label {
	margin-bottom: 0px;
	font-size: 13px;
	color: #333;
	font-weight: 400;
	text-align: center;
}

.form_footer p.label a.link {
	font-size: 13px;
	color: var(--primary);
	cursor: pointer;
	text-decoration: underline;
	font-weight: 400;
}

/* BG */

.auth_bg {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	padding: 24px 24px 24px 0;
	transition: all 400ms ease;
}

.auth_bg_item {
	width: 100%;
	height: 100%;
	background: var(--primary);
	opacity: .1;
	border-radius: 50px;
	transition: all 400ms ease;
}

/* RESPONSIVIDADE */

@media screen and (max-width: 768px) {

	body {
		background: #ffffff;
	}

	.auth_box {
		background: transparent;
		border-radius: 0px;
		box-shadow: none;
	}

	.auth_box form {
		padding: 0 calc(var(--gutter) / 2) 0 calc(var(--gutter) / 2);
	}

	.auth_box .form_header a:has(.form_logo) {
		position: fixed;
		top: var(--gutter);
	}

}