html, body {
	overflow: hidden;
}
.menu-column-title {
	display: none;
}
.main-container {
	display: flex;
    height: 100vh;
    flex-direction: row;
}
.left-pane {
	position: relative;
    width: 40%;
    max-width: 800px;
    min-width: 300px;
    height: 100%;
	background: linear-gradient(#8dcba7, #dcaed0);
    text-align: center;
}
.login-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    background-color: transparent;
    border: 2px solid white;
    padding: 0.7em 2em;
    border-radius: 6px;
    transition: background 0.3s;
    text-decoration: none;
    font-size: 1.6em;
    font-weight: bold;
    color: #FFFFFF;
}
a.login-btn,
a.login-btn:hover {
	color: #FFFFFF;
}
.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
.logo-img {
	position: absolute;
	top: 100px;
	left: 50%;
	max-width: 200px;
	transform: translateX(-50%);
}
.login-caption {
	position: absolute;
	top: 65%;
	left: 50%;
	max-width: 200px;
	transform: translateX(-50%);
	font-size: 0.8em;
}
  .right-pane {
    background-color: white;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    box-sizing: border-box;
  }
  .right-pane p {
    font-size: 2.4em;
    color: #333333;
  }

@media (max-width: 768px) {
	html, body {
		overflow-y: auto;
	}
	.logo-img {
		top: 40px;
		max-width: 100px;
	}
	.login-btn {
		font-size: 1.4em;
	}
	.main-container {
		flex-direction: column;
	}
	.left-pane {
		width: 100%;
		max-width: none;
		height: 420px;
		padding-bottom: 1em;
	}
	.right-pane {
		padding-top: 1em;
	}
}

