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

* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "HA Grotesk Bold";
  src: url("assets/fonts/hagrotesk-bold_final.woff2") format("woff2"), url("assets/fonts/hagrotesk-bold_final.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("assets/fonts/NeueMontreal-Regular.woff2") format("woff2"), url("assets/fonts/NeueMontreal-Regular.woff") format("woff"), url("assets/fonts/NeueMontreal-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

body.login-password-protected {
	font-family: 'Neue Montreal', sans-serif;
	background: #FF4B27;
	color: #F5FFEB;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body.login-password-protected #login:before {
	content: 'Password';
	font-style: normal;
	font-weight: 700;
	font-size: 32px;
	line-height: 34px;
	text-transform: uppercase;
	font-family: 'HA Grotesk Bold', sans-serif;
}

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: 53px;
	height: 44px;
	background-image: url('assets/img/logo-symbol-white.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: fixed;
	top: 18px;
	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: transparent;
	color: #F5FFEB;
	border: 1px solid #F5FFEB;
	border-radius: 40px;
	padding: 10px 30px;
	line-height: 1em;
	display: inline-block;
	width: auto;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 44px;
}
body.login-password-protected #login form p.submit .button-primary:hover {
	color: #002630;
	background: #F5FFEB;
}

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: transparent;
	box-shadow: none;
	border: 0;
	outline: 0;
	text-align: center;
	border-radius: 0;
	font-size: 18px;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	border-bottom: 1px solid #F5FFEB;
	color: #F5FFEB;
}

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

.login #login_error, .login .message, .login .success {
	background-color: transparent;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 20px;
	padding: 0;
	border: 0;
}