body {
    font-family: 'Montserrat', sans-serif;
}

.login-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

h3 {
	margin-bottom: 1em;
}

button {
	padding: 12px 24px;
	font-size: 1.2rem;
	background-color: #4285F4;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

h3:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	opacity: 0.8;
	z-index: -1;
}
