* {
  	box-sizing: border-box;
	font-family: arial;
	
}
.login h4 {
	text-align: center;
	color: red;
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
	font-size: 16px;
}
.login h1 {
  	text-align: center;
  	
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
	display: block;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
	font-size: 20px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
	font-size: 15px;
}
.login form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}
#logout {
  background-color: #ffffff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);

  padding: 75px;

  white-space: nowrap;
  display: grid;
  justify-content: center;

}
#popup_overlay {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.685);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
	display: flex;
	justify-content: center;
	align-items: center
}
#popup_overlay_head {
	background-color: rgba(0, 0, 0, 0.7);
	padding: 20px;
	min-height: 600px;
}
#popup_overlay_content {
	min-height: 600px;
	
}
