@font-face {
	font-family: 'Polymath';
	font-weight: 100 700;
	src: url('./fonts/PolymathVar.woff2');
	font-variation-settings: 'opsz' 72;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	display: flex;
	flex-direction: column;
}

body {
	margin: 0;
	font-family: 'Polymath', sans-serif;
	background-color: hsl(180, 16%, 97%);
	height: 100%;
	width: 100%;
	-webkit-font-smoothing: antialiased;
}

h1 {
	font-style: normal;
	font-weight: 600;
	font-size: 32px;
	line-height: 39px;
	text-align: center;
	font-family: 'Polymath', sans-serif;
}

a {
	text-decoration: none;
}

input {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 8px 8px 8px 16px;
	width: 421px;
	height: 40px;
	background: #ffffff;
	border: 1px solid rgb(168, 173, 184);
	border-radius: 6px;
}

.mt {
	margin-top: 32px;
}

#error--sso {
	margin-top: -15px;
	text-align: center;
	display: block;
	margin-bottom: 15px;
	width: 421px;
}

main,
.main {
	display: flex;
	height: 100%;
	width: 100%;
}

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

.form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.block__left {
	padding: 3rem;
	background-image: url(./img/formance-logo-icon.svg);
	background-color: hsl(187,97%,12%);
	background-color: hsl(187, 97%, 7%);
	background-repeat: no-repeat;
	background-position: calc(100% + 200px) calc(100% + 200px);
	background-blend-mode: overlay;
	background-size: 700px;
	/* background-size: cover; */
	height: 100dvh;
	width: 50dvw;
	overflow: hidden;
	position: relative;
	/* font-family: 'Space Grotesk', sans-serif; */
	/* text-transform: uppercase; */
}
.block__left--logo {
	display: flex;
	align-items: center;
	gap: 8px;
}
.block__left--logo h1 {
	text-align: left;
	line-height: 0;
	color: #fff;
}
.block__left--logo img {
	height: 32px;
}
.block__left h2 {
	width: 80%;
	font-weight: 400;
	font-size: 2rem;
	color: hsl(186, 22%, 33%);
}
.block__left--icons {
	margin-top: 1rem;
}
.block__left--site {
	position: absolute;
	bottom: -5vw;
	left: 3rem;
	width: auto;
	height: 60vh;
}

@media screen and (max-height: 640px) {
	.block__left {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.block__left {
		display: none;
	}
}
@media screen and (min-width: 1500px) {
	.block__left {
		width: 35dvw;
	}
}

.block__right {
	display: flex;
	padding: 24px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	margin: auto;
}
.block__right--title {
	font-family: 'Polymath', sans-serif;
	font-weight: 600;
	color: #161719;
	text-align: center;
	padding: 0;
	margin-bottom: 8px;
}
.block__right--subtitle {
	font-family: 'Polymath', sans-serif;
	font-weight: 300;
	color: rgb(168, 173, 184);
	text-align: center;
	margin: 0;
	padding: 0;
}
.block__right--registered {
	font-family: 'Polymath',sans-serif;
	font-weight: 100;
	color: rgb(168, 173, 184);
	text-align: center;
	width: 320px;
	font-size: 16px;
}
.block__right--help {
	text-align: center;
	font-family: 'Polymath',sans-serif;
	color: rgb(168, 173, 184);
	margin-top: 64px;
	font-size: 16px;
	font-weight: 100;
	margin-bottom: 62px;
}
.block__right--support {
	font-weight: 800;
	color: rgb(22, 22, 24);
}
.block__right--footer {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 0;
}

.block__right--legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgb(239, 241, 246);
}
.block__right--legal p {
	margin-top: 16px;
}
.block__right--legal a {
	margin-right: 12px;
}
.block__right--legal a:first-child {
	margin-left: 12px;
}
.block__right--legal a,
.block__right--legal p {
	font-family: 'Polymath',sans-serif;
	color: rgb(168, 173, 184);
	font-size: 14px;
}

@media screen and (max-height: 640px) {
	.block__right {
		height: auto;
	}

	.block__right--footer {
		position: static;
	}
}

.box {
	margin: 16px 0 16px 0;
	display: block;
}

.button--secondary {
	background: #ffffff;
	border: 1px solid rgb(226, 228, 233);
	border-radius: 6px;
	width: 420px;
	height: 40px;
	display: flex;
	justify-content: center;
}
.button--secondary:hover {
	cursor: pointer;
	background-color: rgb(239, 241, 246);
}

.button--primary {
	background: rgb(22, 22, 24);
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 6px;
	width: 420px;
	height: 40px;
	display: flex;
	justify-content: center;
}
.button--primary:hover {
	cursor: pointer;
	color: #ffffff;
}

.button__icon {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 22px;
	height: 28px;
	width: 28px;
	margin-right: 8px;
	margin-top: 4px;
}

.button__text {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	margin-top: 10px;
	display: block;
	font-family: 'Polymath',sans-serif;
}

.button__icon--google {
	background-image: url(./img/google-icon.svg);
}

.button__icon--local {
	background-image: url(./img/email-icon.svg);
}

.button__icon--local-light {
	background-image: url(./img/email-icon-light.svg);
}

.button__icon--github {
	background-image: url(./img/github.svg);
}

.button__icon--gitlab {
	background-image: url(./img/gitlab-icon.svg);
}

/* TODO Fix adminEmail dex config issue to avoid cheating for oidc type as a google icon */
.button__icon--oidc {
	background-image: url(./img/google-icon.svg);
}

.button__icon--linkedin {
	background-image: url(./img/linkedin-icon.svg);
}

.button__icon--microsoft {
	background-image: url(./img/microsoft-icon.svg);
}

.error_shell {
	background-color: #161719;
	border-radius: 6px;
	color: #79ff4a;
	font-family: 'Space Grotesk', sans-serif;
	text-transform: uppercase;
	padding: 16px;
	margin: 24px 0 24px 0;
}

.error {
	font-size: 14px;
	color: #c75656;
}

.backlink {
	font-size: 14px;
}

.neutral500 {
	color: #808b9d;
}

.neutral300 {
	color: #d4d7de;
}

.ta--center {
	text-align: center;
	display: block;
}

/*# sourceMappingURL=main.css.map */
