.content__align {
	width: 100vw;
	height: 100vh;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}

.container {
	background: #ffffff;
	box-shadow: 0px 0px 250px #343a4010;
	padding: 0px !important;
	border-radius: 65px;
	overflow: hidden;
}

/* FORM BOX */

.auth__form {
	padding: 65px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
}

.auth__form .auth__brand {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
}

.auth__form .auth__brand img {
	height: 120px;
}

.auth__title {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	gap: 10px;
}

.auth__title h2 {
	font-size: var(--font-title-h2);
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -.4px;
}

.auth__title p {
	font-size: var(--font-body);
	font-weight: 300;
	color: #343a4080;
	line-height: 150%;
}

.auth__fields {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	margin-bottom: 15px;
	gap: 10px;
}

.auth__fields .field__box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	gap: 5px;

	margin-bottom: 5px;
}

.auth__fields .field__box label {
	font-size: var(--font-label);
	font-weight: 300;
	color: #343a40;
}

.auth__fields .field__box label b {
	font-weight: 400;
	color: var(--color-secondary);
}

.auth__fields .field__box .field__item {
	height: 50px;
	border-radius: 25px;
	border: 1px solid #08080710;
	padding: 0px 15px;

	display: flex;
	justify-content: stretch;
	align-items: stretch;
	gap: 10px;

	overflow: hidden;
}

.auth__fields .field__box .field__item input {
	background: transparent;
	font-size: var(--font-label);
	font-weight: 300;
	color: #343a40;
	border: none !important;
	width: 100%;
}

.auth__fields input::placeholder {
	color: #343a4060;
}

.auth__fields input:focus {
	outline: none !important;
}

.auth__fields .field__box p.message__error {
	font-size: var(--font-label);
	margin-bottom: 0px;
	line-height: 130%;
	margin-top: 5px;
	color: var(--badge-red);
	font-weight: 300;

	display: none;
}

.auth__actions {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	gap: 10px;

	margin-bottom: 25px;
}

.auth__actions button.fill {
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	font-size: var(--font-small);
	padding: 0px;
	height: 50px;
	font-weight: 500;
	color: #ffffff;
	border-radius: 25px;

	display: flex;
	justify-content: center;
	align-items: center;
}

.auth__links {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}

.auth__links p {
	font-size: var(--font-label);
	font-weight: 300;
	margin-bottom: 0px;
}

.auth__links p a {
	color: var(--color-secondary);
}

/* AUTH BACKGROUND */

.auth__bg {
	width: 100%;
	height: 100%;
	padding: 15px;

	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: stretch;
}

.bg__item {
	border-radius: 50px;
	background: #fafafa;
	width: 100%;
	height: 100%;

	background: url('../../img/AuthBackground.jpg');
	background-size: cover !important;
	background-position: center center !important;
}


/* RESPONSIVIDADE */

@media screen and (max-width: 768px) {

	body {
		background: #ffffff !important;
	}

	.auth__box .container {
		background: transparent !important;
		box-shadow: none !important;
	}

}