#content {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	margin-bottom: 2em;
}

#login_box  {
	width: 300px;
	text-align: center;
	padding: 2em;

	border-radius: 0.83rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: #00000088 2px 2px 5px;
	position: relative;
	background: white;
}


#login_box ul {
	margin: 1em 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

#login_box ul li{
	margin: 0.5em 0;
	display: flex;
	align-items: center;
}

#login_box label {
	display: block;
	width: 25%;
	line-height: 1.8em;
	font-size: 14px;
}

.input-wrapper {
	flex: 1;
	background: white;
	border-radius: 30px;
	padding: 0;
	border: solid 0.3333em white;
	box-shadow: 0 1px 0 white, 0 1px 5px #61616138 inset;
	overflow: hidden;
}
.input-wrapper input {
	border: none;
	outline: none;
	font-weight: 300;
	width: 100%;
	line-height: 1.5;
	padding: 0.5em 1em;
	background: transparent;
	box-sizing: border-box;
}

.input-wrapper input:-webkit-autofill,
.input-wrapper input:-webkit-autofill:hover,
.input-wrapper input:-webkit-autofill:focus,
.input-wrapper input:-webkit-autofill:active{
	-webkit-box-shadow: 0 1px 0 white, 0 1px 5px #61616138 inset !important;

}


#login_box ul.error_list {
	color: red;
	text-align: center;
	width: 100%;
	justify-content: center;
	align-items: center;
	display: flex;
	margin: 0;
}

#login_box ul.error_list li {
	margin: 0 0 0.5em 0;
	display: flex;
	align-items: center;
}

input[type=submit] {
	background: #22252B;
	border: 0;
	border-radius: 5em;
	color: white;
	padding: 0.5em 3em;
	font-weight: 500;
	display: block;
	margin: 1em auto 0 auto;
}

@media screen and (max-device-width: 800px) {
	body {
		font-size: 100%;
	}

  #head {
    height: auto;
  }

  #content  {
    width: 100%;
      margin: 0;
  }
	
	#login_box {
        margin: 0;
		width: auto;
	}

}

.titleWithIcon {
	display: flex;
	align-items: center;
	font-weight: 700;
	gap: 0.82rem;
	margin: auto;
	margin-bottom: 1em;
}
.titleWithIcon .label {
	font-size: 1.8333333333rem;
}
.titleWithIcon .icon {
	width: 2.5rem;
}
.titleWithIcon .icon img {
	display: block;
	margin: auto;
}
