main {
	margin: auto;
}

.login-panel {
	background-color: var(--background-color);
	max-width: 425px;
	margin: auto;
	padding: 20px 40px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.logo-container {
	width: 100%;
	padding: 1rem 20%;
	margin-bottom: 3em;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.logo-container>img {
	width: inherit;
}

.title {
	font-size: 1.8em;
	text-align: left;
	width: 100%;
	margin-bottom: 0.6em;
}

.prompt-message {
	display: none;
	color: var(--dark-font-color);
	padding-top: 0.1rem;
}

.error {
	color: var(--red-font-color);
}

.warning {
	color: var(--yellow-font-color);
}

.great {
	color: var(--green-font-color);
}

label {
	width: 100%;
	height: 70px;
	padding-top: 1rem;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

label[for=remember-password] {
	height: auto;
	padding: 0;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

label[for=remember-password]>input {
	margin-right: 0.5rem;
}

input {
	padding: 0.8em 1.4em;
	border: none;
	background-color: var(--secondary-background-color);
}

button {
	width: 50%;
	height: 40px;

	border: none;
	background-color: var(--company-color1);
	color: white;
}

.login-container {
	margin-top: 2em;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.deactivated {
	background-color: var(--deactivated-company-color1);
}

.general-prompt {
	height: 1em;
	margin-top: 1em;
}

.tyc {
	margin-top: 3em;
	font-size: 0.75em;
	color: var(--input-color);
}

@media (width >=425px) {
	.login-panel {
		font-size: 1rem;
	}
}