*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Bagoss Standard";
  src: url("assets/fonts/BagossStandard-Regular.eot");
  src: url("assets/fonts/BagossStandard-Regular.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/BagossStandard-Regular.woff2") format("woff2"),
    url("assets/fonts/BagossStandard-Regular.woff") format("woff"),
    url("assets/fonts/BagossStandard-Regular.ttf") format("truetype"),
    url("assets/fonts/BagossStandard-Regular.svg#BagossStandard-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bagoss Standard";
  src: url("assets/fonts/BagossStandard-Medium.eot");
  src: url("assets/fonts/BagossStandard-Medium.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/BagossStandard-Medium.woff2") format("woff2"),
    url("assets/fonts/BagossStandard-Medium.woff") format("woff"),
    url("assets/fonts/BagossStandard-Medium.ttf") format("truetype"),
    url("assets/fonts/BagossStandard-Medium.svg#BagossStandard-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body.login-password-protected {
	font-family: 'Bagoss Standard', sans-serif;
	background: #b1eda6;
	color: #045e51;
}

body.login-password-protected #login {
	padding: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 493px;
	padding: 0 30px;
}

body.login-password-protected #login h1 {
display: none;
}

body.login-password-protected #login form {
	background: transparent;
	box-shadow: none;
	border: 0;
	text-align: center;
	display: block;
	width: 100%;
}

body.login-password-protected #login form::before {
	content: '';
	display: block;
	width: 400px;
	height: 65px;
	background-image: url('assets/img/primary-logo.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: fixed;
	top: 87px;
	left: 50%;
	transform: translateX(-50%);
}

body.login-password-protected #login form p.submit {
	text-align: center;
}

body.login-password-protected #login form p.submit .button-primary {
	float: none;
	background: #045E51;
	color: #b1eda6;
	border: 0;
	border-radius: 50px;
	padding: 19px 20px;
	line-height: 1em;
	display: block;
	width: 100%;
	font-size: 21px;
	font-weight: 500;
	border: 2px solid #b1eda6;
}
body.login-password-protected #login form p.submit .button-primary:hover {
	color: #045E51;
	background: #b1eda6;
	border: 2px solid #045E51;
}

body.login-password-protected #login form label {
	font-size: 0;
}

body.login-password-protected #login form input[type=password],
body.login-password-protected #login form .input {
	background: #b1eda6;
	box-shadow: none;
	border: 0;
	outline: 0;
	text-align: center;
	border-radius: 50px;
	font-size: 14px;
	padding: 22px;
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	border: 2px solid #045E51;
}

body.login-password-protected #login form input[type=password]::placeholder {
	color: #045E51;
	opacity: 50%;
}