.logo-wrapper { height: 60px; width: 253px; }
.logo { background-size: contain; background-repeat: no-repeat; height: 100%; }
.logo.logo-y { background-image: url("../images/mainter_logo_Y.svg"); }
.logo.logo-w { background-image: url("../images/mainter_logo_W.svg"); }

.light-text {
	color: #fefefe;
}

.bg-login {
	/* background-color: #3a3a3a; */
	background-image: url("../images/login_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

#loginFlexBox {
	display: grid;
	grid-template-rows: auto minmax(40px, 200px) 0.5fr fit-content(200px) auto 69px;
	grid-template-columns: 1fr;
	height: 100vh;
	height: -webkit-fill-available;
}

#loginFlexBox #login_header {
	min-width: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#loginFlexBox #login_blank {
	/* flex-grow: auto; */
}

#loginFlexBox #login_content {
	/* flex-grow: 1; */
}

#loginFlexBox #login_footer {
	min-width: 320px;
	/* flex-grow: 0; */
}

.main-container{
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
	margin-top: 21px;
}

.btn-login {
	width: 100%;
	padding: 10px;
	border-radius: 20px;
	font-size: 1.25rem;
	font-weight: bolder;
}


.login-label {
	flex: 0 0 auto;
	align-self: center;
    width: auto;
	color: #fefefe;
}

.login-input {
	flex: 1;
}

.login-px {
	padding-left: 2rem !important;
	padding-right: 2rem !important;
}

.invalid-message {
	position: absolute;
	bottom: 20px;
	width: 100%;
	padding: 1rem;
	border-radius: 0.3rem;
	background-color: rgba(255, 0, 0, 0.5);
	color: #fefefe;
	text-align: center;
}