#Auth {
	min-height: 100vh;
	background-color: var(--white);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	/* padding: 60px 0; */
	padding-bottom: 0;
}

#Auth::before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	content: "";
	background-image: url(../../images/pattern.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-blend-mode: screen;
	opacity: 0.26;
}

/* .overlay {
	background-color: rgba(149, 184, 215, 0.35);
} */

.form-container {
	width: 38%;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(17, 54, 176, 0.738);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.form-container h3 {
	color: var(--primary-color);
	font-size: 26px;
}

form label {
	font-size: 18px;
	color: var(--white);
}

form input {
	opacity: 0.7;
	border-radius: var(--radius-sm);
	border: none;
}

input:focus {
	opacity: 1;
	outline: none;
}

form p {
	font-size: 14px;
	color: var(--white);
}

form p a {
	color: var(--primary-color);
	font-size: 16px;
	border-bottom: solid 2px var(--primary-color);
	transition: all 0.2s;
}

form p a:hover {
	color: var(--white);
	border-color: var(--white);
}

form button {
	background-color: transparent;
	margin: 40px auto 25px auto;
	border: solid 3px var(--primary-alt-color);
	border-radius: 40px;
	color: var(--white);
	font-size: 20px;
	transition: all 0.3s;
}

form button:hover {
	background-color: var(--primary-alt-color);
}


/* xxs */
@media all and (min-width:0px) and (max-width:370px) {
	.form-container {
		width: 90%;
	}

	.form-container h3 {
		font-size: 20px;
	}

	form label {
		font-size: 16px;
	}

	form p {
		font-size: 12px;
	}

	form p a {
		font-size: 14px;
	}

	form button {
		margin: 30px auto 25px auto;
		font-size: 16px;
	}
}

/* xs */
@media all and (min-width:371px) and (max-width:600px) {
	.form-container {
		width: 70%;
	}

	.form-container h3 {
		font-size: 20px;
	}

	form label {
		font-size: 16px;
	}

	form p {
		font-size: 12px;
	}

	form p a {
		font-size: 14px;
	}

	form button {
		margin: 30px auto 25px auto;
		font-size: 18px;
	}
}

/* sm */
@media all and (min-width:601px) and (max-width:768px) {
	.form-container {
		width: 65%;
	}

	.form-container h3 {
		font-size: 22px;
	}

	form label {
		font-size: 16px;
	}

	form p {
		font-size: 12px;
	}

	form p a {
		font-size: 14px;
	}

	form button {
		margin: 30px auto 25px auto;
		font-size: 18px;
	}
}


/* md */

@media all and (min-width:769px) and (max-width:991px) {
	.form-container {
		width: 52%;
	}
}

/* lg */

@media all and (min-width:992px) and (max-width:1200px) {
	.form-container {
		width: 48%;
	}
}


/* xl */

@media all and (min-width:1201px) {
	.form-container {
		width: 40%;
	}
}