.logo {
	width: 248px;
	margin-bottom: 64px;
}

#logoWrapper {
	display: flex;
	justify-content: center;
}

.loginContainer {
	width: 25%;
	display: flex;
	border-radius: 24px;
	align-items: left;
	flex-direction: column;
	justify-content: flex-start;
}

.loginPage {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Inter";
}

body {
	margin: 0px;
	padding: 0px;
	display: flex;
}

.loginLabel {
	width: 75%;
	font-size: 9pt;
	color: #5a5a5a;
	margin-bottom: 12px;
}

.loginField {
	all: unset;
	margin-left: 8px;
	margin-right: 8px;
	font-size: 10pt;
	text-align: left;
	cursor: text;
	background-color: #ffffff;
	border-radius: 8px;
	margin-bottom: 36px;
	box-shadow: 0px 0px 5px #eee;
	display: flex;
	align-items: center;
	height: 26px;
	border: none;
	font-family: "Inter";
	transition: border-color 0.1s ease;
	width: 93%;
	padding-left: 8px;
	border: 1px solid #ddd;
}

.loginButton {
	all: unset;
	font-size: 10pt;
	cursor: default;
	transition: font-weight 0.1s ease, background-color 0.2s ease;
	background-color: #675bc4;
	border-radius: 8px;
	filter: drop-shadow(0px 1px 2px #dadada);
	display: flex;
	align-items: center;
	height: 32px;
	color: #ffffff;
	width: 60%;
	justify-content: center;
	margin-bottom: 32px;
}

.loginButtonWrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}

.loginButton:hover {
	background-color: #8275e7;
	cursor: pointer;
}

#loginIcon {
	fill: #fff;
	margin-right: 12px;
}

.loginForgotPassword {
	font-size: 9pt;
	color:#4c438f;
}

.loginForgotPassword:hover {
	cursor: pointer;
	text-decoration: underline;
}

#loginError {
	font-size: 10pt;
	color: #675bc4;
	margin-top: 16px;
	height: 16px;
}

select:focus, input:focus {
	outline: 0px;
}

.loginField:hover {
	border-color: #bbb;
}

.loginField:focus {
	border-color: #777;
}

#currentStatus {
	position: absolute;
	top: 8px;
	width: 160px;
	height: 40px;
	left: 45vw;
	background-color: white;
	font-size: 10pt;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	filter: drop-shadow(0px 3px 3px rgba(233, 208, 191, 0.75));
}

#loadingCircle {
	transform: scaleX(-1);
}

#rememberMeWrapper {
	display: flex;
	flex-direction: row;
	justify-content: left;
	width: 60%;
	font-size: 10pt;
	color: #5a5a5a;
	margin-bottom: 16px;
}

.loginPageWrapper {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
}

.checkbox {
  	display: flex;
  	align-items: center;
  	gap: 8px;
  	font-size: 10pt;
  	cursor: pointer;
  	user-select: none;
}

.checkbox input {
  display: none;
}

.checkmark {
  	width: 14px;
  	height: 14px;
  	border: 1px solid #ddd;
  	box-shadow: 0px 0px 5px #eee;
  	border-radius: 3px;
  	position: relative;
  	transition: all 0.2s ease;
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

.checkmark svg {
	display: none;
	fill: white;
}

.checkbox input:checked + .checkmark {
  background-color: #675bc4;
  border-color: #675bc4;
  box-shadow: 0px 0px 5px #eee;
}

.checkbox:hover .checkmark {
  border-color: #aaa;
}

input:checked + .checkmark svg {
	display: block;
}

.tipContainer {
	width: 40%;
}

.loginSeparator {
	width: 1px;
	background: linear-gradient(to bottom, #fff, #ddd, #ddd, #fff);
}