:root {
	--color-main: #08314c;
	--color-light: #f2f8fc;
	--color-border: #cedee9;
}
  
.main-layout {
	position: fixed;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  
  display: flex;
  flex-direction: column;
}

header {
	padding: 1rem;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	background: white;
	border-bottom: 1px solid #EEE;
}

header .nav .nav-item a {
	font-weight: bold;
	color: var(--color-main);
}

.header-logo {
  outline: none;
}

.header-logo > img {
  height: 64px;
  max-width: 100%;
}
  
footer {
	padding: 1rem;
	border-top: 1px solid #EEE;
}
  
footer p {
	padding: 0;
	margin: 0;
	text-align: center;
}
  
main {
	flex: 1;
	overflow: auto;
	background-color: var(--color-light);
}

.banner {
	position: relative;
	left: 0;
	top: 0;
	right: 0;
	height: 100%;
	background: url('../images/banner2.jpg') no-repeat center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner-text {
	padding: 2rem;
	position: relative;
	margin: 0 1rem 10rem;
}

.banner-text::before {
	position: absolute;
	content: ' ';
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: var(--color-main);
	border-radius: 2rem;
	opacity: 0.6;
	box-shadow: 0 0 2rem 2rem var(--color-main);
}

.banner-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.banner h1,
.banner h2 {
	color: white;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	text-align: center;
	margin: 0;
}

.banner h1 a {
	color: white;
}

main > .container {
	background: white;
	padding: 0 2rem;
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
}

main > .container.content {
	display: flex;
	position: relative;
	gap: 2rem;
	padding-top: 2rem;
}

.content-text {
	flex: 1.5;
}

.content-img {
	flex: 1;
}

p.prompt {
	font-size: 1.5rem;
}

ol.steps {
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 1rem 0 2rem;
}

ol.steps > li {
	list-style: none;
	flex: 1;
	margin: 0;
	padding: 1rem;
	border: 1px solid var(--color-main);
	border-radius: 1rem;
	font-size: 1.2rem;
}

ol.steps > li > p:last-child {
	margin-bottom: 0;
}

.container.login {
	height: 100%;
	padding-top: 2rem;
}

main form {
	padding: 1rem;
}

.dashboard {
	position: relative;
	height: 100%;
	min-height: 400px;	
	display: flex;
	gap: 2rem;
}

.dashboard-text {
	overflow: auto;
	flex: 1;
	padding: 1rem 0;
	min-height: 400px;
}

.dashboard-embed {
	overflow: hidden;
	flex: 1;
	min-height: 600px;
	padding: 1rem 0;
}

@media only screen and (max-width: 600px) {
	
	.d-desktop {
		display: none;
	}
	
	header {
		flex-direction: column;
		justify-content: center;
		gap: 0;
		padding-bottom: 0;
	}
	
	.banner-text {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	
	.banner-text::before {
		box-shadow: none;
		border-radius: 0;
	}
	
	main > .container {
		border: none;
	}
	
	main > .container.content {
		gap: 1rem;
	}

	p.prompt {
		font-size: 1.2rem;
	}

	.content,	
	.dashboard,
	ol.steps {
		flex-direction: column;
	}
	
	ol.steps > li {
		font-size: 1.1rem;
	}
	
	.dashboard-embed {
		margin: 0 -2rem;
	}
	
}