:root {
	--c-primary: #090304;
	--c-secondary: #136EF6;
	--c-secondary-darker: #0857CE;
	--c-accent: #88969E;
	--c-white: #FFFFFF;
}

@font-face {
	font-family: 'Sofia Pro';
	src: url('../font/SofiaPro-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

html,
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background: var(--c-primary);
	height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: 'Sofia Pro', 'Trebuchet MS', sans-serif;
}

.main {
	align-self: center;
	display: flex;
	flex-direction: column;
	max-width: 496px;
	width: 100%;
	margin: auto;
	min-height: 600px;
}

footer {
	padding: 1em;
}

.logo {
	padding-bottom: 2em;
}

.sign-in {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	background: var(--c-white);
	box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
	margin: 1rem 0;
	padding: 3em 3em 3em 3em;
	border-radius: 4px;
	border: 1px solid rgba(34, 36, 38, 0.15);
	font-size: 1em;
}

.sign-in > .button {
	width: 261px !important;
	height: 36px !important;

	font-family: 'Sofia Pro', 'Trebuchet MS', sans-serif;

	background: var(--c-secondary) !important;
}

.sign-in > .button:disabled {
	background-color: #cccccc !important;
	color: #999999 !important;
}

.sign-in > .button:hover {
	background-color: var(--c-secondary-darker) !important;
}

.sign-in > .forgot-password {
	width: 261px;
	padding-bottom: 1em;
}

.sign-in > .forgot-password > a {
	color: var(--c-secondary);
	text-decoration: underline;
}

.sign-in > .field > .input > input:focus {
	border-color: var(--c-secondary) !important;
}

.ui.error.message { min-height: fit-content; }
.ui.input {
	width: 261px !important;
	height: 36px;
}

.ui.input input {
	font-family: 'Sofia Pro', 'Trebuchet MS', sans-serif !important;
}

body > footer > .copyright {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: var(--c-accent);
}
.footer-links {
	display: flex;
	justify-content: center;
	margin-top: 1em;
}

body > footer > .copyright > .footer-links,
body > footer > .copyright > .footer-links a {
	color: var(--c-secondary);
	font-size: 12px;
}
body > footer > .copyright > .footer-text {
	float: left;
	font-size: 12px;
}

body > footer > .copyright > .footer-links > a {
	display: inline-block;
	padding: 0 5px 0 5px;
	font-size: 12px;
}

body > footer > .copyright > .footer-links > .navigation-item {
	padding: 0 1em;
}

.copyright-text {
	padding: .5em 0 .5em 1em;
	font-size: 12px;
	color: #cccccc;
}

.logo {
	position: relative;
	top: 20px;
}

.sign-in {
	padding: 1em 1em 3em 1em;
}

.sign-in.redirect {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.main {
	align-self: flex-end;
	width: 100%;
	min-height: 0;
}

.redirect-container {
	background: #f6a735;
	display: flex;
	justify-content: center;
	width: 100%;
	color: var(--c-white);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	padding: 1em 0.5em;
	text-align: center;
}

@media only screen and (max-width: 479px) {
	.main {
		max-width: 290px;
	}
}

@media only screen and (min-width: 480px) and (max-width: 599px) {
	.main {
		max-width: 400px;
	}
}

.warning-banner {
	text-align: center;
	background: #f6a735;
	padding: 2em 10vw;
}


