h1 {
	text-align: center;
	font-size: 20px;
	margin: 0 0 30px 0;
}

.loginForm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin: auto;
    padding: 80px 120px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.inputArea{
	display: flex;
    flex-direction: column;
}

label {
	font-size: 13px;
}


.submitBtn{
	background: #b2dbc9;
	text-align: center;
	color: #fff;
	margin: 30px auto;
}

.errArea {
	color: red;
	font-weight: bold;
}

.rememberPass {
    width: 100%;
    margin: 10px 20px 0 0;
}
.rememberPass a {
	color: #76c4b5;
	text-decoration: underline;
	font-size: 12px;
}