body {
	font-family: Roboto !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: 100vh;
	color: #717171;
	background-color: #ffffff;
	background-image: linear-gradient(315deg, #ffffff 0%, #d7e1ec 74%);
}

/* Main Container with FLEX DO NOT REMOVE */
.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1484px;
	}
}

.flex-layout {
	list-style: none;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	/* flex-flow is shorthand for flex-direction and flex-wrap */
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	position: relative;
}

.flex-item {
	-webkit-flex: auto;
	-moz-flex: auto;
	flex: auto;
	width: 100%;
	margin: 10px 20px 10px 0px;

	/* Center numbers for the hell of it: anonymous boxes become flex items, btw! */

	/* Make each LI a flex container! */
	align-items: top; /* Cross axis (vertical in this case) */
}

.fixed-width-column {
	width: 300px;
	flex: 0 0 300px;
}

@media only screen and (min-width: 40em) {
	.flex-item {
		width: 48%;
	}
}

@media only screen and (min-width: 50em) {
	.flex-item {
		width: 31%;
	}
}

@media only screen and (min-width: 65em) {
	.flex-item {
		width: 23%;
	}
}

@media only screen and (min-width: 80em) {
	.flex-item {
		width: 18%;
	}
}

/* End of Main Container with FLEX DO NOT REMOVE */

.login-container {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 100vh;
	align-items: center;
	justify-items: center; /* adjusted */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
}

#container {
	display: flex; /* establish flex container */
	flex-direction: column; /* make main axis vertical */
	justify-content: center; /* center items vertically, in this case */
	align-items: center; /* center items horizontally, in this case */
	height: 300px;
}

.col {
	width: 300px;
	margin: 5px;
	text-align: center; /* will center text in <p>, which is not a flex item */
}

/* .mdc-text-field--outlined {
	margin-bottom: 10px;
} */

.mdc-top-app-bar {
	background-color: transparent;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item {
	/* margin: 5px; */
	color: #73c801;
}

:global(.mdc-snackbar__surface) {
	background-color: #73c801;
	color: black;
}

.cv-logo {
	width: 185px;
	cursor: pointer;
}

.full-width {
	width: 100%;
}
