body {
	height: 100vh;
	width: 100%;
}

/* =====================================================
/* ======================= LOGIN ======================= */
/* ===================================================== */

.login-container {
	height: 100vh;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;

	background-image: url(../img/login_grey.jpg);
}

.main-login {
	position: relative;

	height: 100%;
	width: 100%;
	top: 0;
	left: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	background: url("../img/login_grey.jpg");
	background-size: cover;
}

.main-login-background {
	position: absolute;

	height: 100%;
	width: 100%;

	backdrop-filter: blur(8px);

	z-index: 0;
}

.main-login-logo {
	position: absolute;
	top: 32px;
	left: 32px;

	z-index: 1;
}

.main-login-logo > .logo-header {
	margin: 0;
	color: #FFFFFF;
}

.main-login-logo > img {
	width: 100%;
}

.main-login-form {
	position: fixed;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 8px;
	background: #FFFFFF;

	z-index: 1;
	overflow: hidden;

	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.main-login-form > form {
	width: 400px;

	flex: 1;

	display: flex;
	flex-direction: column;
}

.main-login-form > form > .login-header {
	min-height: 80px;
	padding: 10px;

	border-bottom: 1px solid var(--clr-border);

	display: flex;
	align-items: center;
	justify-content: center;
}

.login-header > h3 {
	margin: 0;
	padding: 0;
}

.main-login-form > form > .login-body {
	padding: 40px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 8px;
}

.login-body .form-group {
	width: 100%;
}

.login-body input {
	height: 40px !important;
	border-radius: 8px;
}

.main-login-form > form > .login-footer {
	padding: 16px;
	border-top: 1px solid var(--clr-border);

	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 8px;
}

.login-footer-btn {
	width: 100%;

	display: flex;
	align-items: center;
	column-gap: 16px;
}

.login-footer-btn > .btn {
	height: 40px !important;
	width: 100%;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	column-gap: 8px;

	font-size: 1.6rem;
	font-weight: 600;
}

.login-footer > a {
	width: 100%;
	text-align: center;
}