html {
  scroll-behavior: smooth; 
}
body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	background-color: #B4B11F;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
  align-items: center;
  background-image: url(../images/auth-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
* {
  box-sizing: border-box;
}
main {
	width: 370px;
	max-width: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.logo {
	display: block;
	max-width: 105px;
	margin-bottom: 22px;
}

.form {
	display: flex;
	flex-direction: column;
	/*max-width: 370px;*/
	width: 100%;
	grid-gap: 10px;
}

.form>* {
	display: block;
	height: 45px;
	border: 1px solid rgba(0, 0, 0, 0.66);
	box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
	border-radius: 9px;
	font-size: 16px;
	padding: 5px 20px;
}
.btnSubmit {
	background-color: #000000;
	color: #FFFFFF;
	cursor: pointer;
}
.btnSubmit:hover {
	background-color: #E7DE01;
	color: #000000;
}
.wrongpass {
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	border: none;
	box-shadow: none;
	font-weight: 500;
	text-align: center;
}

/*.main div.msg a {
	color: #000000;
}*/





.hdn {
	display: none;
}