:root
{
	--login-logo: transparent url("/static/img/massresponse_Logo.svg") no-repeat;
	--background-color: #F6F6F6;
}

body
{
	margin: 0;
	padding: 0;
}

a
{
	text-decoration: none;
	color: #343E45;
}

.container
{
	width: 100vw;
	height: 100vh;
	background-image: url("/static/img/Login_Illustration.svg");
	background-size: 1550px;
	background-position-x: 24vw;
	background-position-y: 12vh;
	background-repeat: no-repeat;
	float: right;
	overflow: hidden;
}

.login-form-container
{
	position: relative;
	height: 100%;
	width: 730px;
	background: var(--background-color) 0 0 no-repeat padding-box;
	box-shadow: 0 6px 10px #00000094;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.login-form
{
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	gap: 28px;
}

.logo
{
	width: 400px;
	max-width: 400px;
	height: 55px;
	align-self: center;
	background: var(--login-logo) center;
	background-size: contain;
	margin: 0;
}

.form-wrapper
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
}

.form-wrapper > h1
{
	text-align: center;
	font: normal normal bold 42px/48px Arial;
	letter-spacing: 0;
	color: #343E45;
	margin: 0;
	font-size: 28px;
}

.form
{
	align-self: center;
	height: fit-content;
	display: flex;
	align-items: flex-end;
}

.form > form
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	max-height: 400px;
	gap: 20px;
}

.form > form input:focus
{
	outline: none;
}

.form > form .input-box
{
	width: 353px;
	height: 50px;
	padding-left: 10px;
	background: #FFFFFF 0 0 no-repeat padding-box;
	border: none;
	border-radius: 4px;
}

.form > form .input-wrapper
{
	position: relative;
	border: 2px solid #343E45;
	border-radius: 4px;
}

.form > form .input-wrapper > label
{
	position: absolute;
	top: -.65em;
	left: 1.7em;
	background: linear-gradient(180deg, var(--background-color) 60%, transparent 60%);
	padding: 0 0.5em;
	font: normal normal bold 14px/16px Arial;
	letter-spacing: 0;
	color: #343E45;
}

.login-button
{
	background-color: #92D315;
	color: white;
	margin: 0 0;
	border-radius: 4px;
	border: none;
	box-shadow: 1px 2px 6px #769932;
	height: 50px;
	font: normal normal bold 20px/23px Arial;
	cursor: pointer;
	text-align: center;
}

.login-button:hover
{
	background-color: #7cb311;
}

.language-container
{
	display: flex;
	flex-direction: row;
	gap: 1.7rem;
	background: transparent url("/static/img/language-icon.svg") no-repeat left center;
	padding-left: 2em;
	background-size: 15px;
	bottom: 2em;
	align-self: center;
}

.language-container > p
{
	justify-self: center;
	align-self: center;
	font: normal normal normal 15px/17px Arial;
	letter-spacing: 0;
	color: #343E45;
	opacity: 0.7;
	cursor: pointer;
}

.language-container > p:hover
{
	font-style: italic;
}

.third-party-login-wrapper
{
	display: flex;
	flex-direction: column;
	width: 70%;
	align-self: center;
	align-items: center;
	gap: 26px;
}

.divider
{
	height: 0;
	background: #343E45 0 0 no-repeat padding-box;
	border: 1px solid #343E45;
	width: 95%;
	align-self: center;
}


.ms-button-wrapper
{
	display: flex;
	justify-content: center;
/*	margin-top: 3.5em;*/
	align-self: center;
	width: -moz-fit-content;
	width: fit-content;
}

.microsoftButton
{
	font-family: 'Noto Sans', sans-serif;
	font-size: 15px;
	display: flex;
	flex-direction: row;
	height: 41px;
	width: -moz-fit-content;
	width: fit-content;
	border: 1px solid #707070;
	background: transparent url("/static/img/microsoft-icon.svg") no-repeat 15px center;
	justify-content: center;
	align-items: center;
	padding-left: 48px;
	padding-right: 10px;
	cursor: pointer;
	box-shadow: 1px 2px 3px #707070;
}

.microsoftButton:hover
{
	box-shadow: 1px 1px 1px #707070;
}

.errorContainer
{
	font: normal normal normal 20px/23px Arial;
	color: red;
	letter-spacing: 0;
	text-align: center;
}

.connectorInfo
{
	font: normal normal normal 16px/20px Arial;
	text-align: center;
}

.differentAccount
{
	color: #343E45;
	text-decoration: none;
	font-style: italic;
}

.nameInfo
{
	color:#004278;
}

@media (min-height: 650px) {
	.login-form {
		gap: 64px;
	}

	.form-wrapper {
		gap: 42px;
	}
}
@media (min-height: 950px) {
	.form > form {
		gap: 32px;
	}
}
@media (max-width: 730px)
{
	.login-form-container
	{
		height: 100%;
		width: 100vw;
	}

	.logo
	{
		width: 90%;
	}

	.language-container
	{
		gap: 0.6rem;
	}

	.container
	{
		background: none;
	}
}

