.login {
	width: 400px;
	margin: auto;
	margin-top: 231px;
}
input {
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #a0a0a0;
	font-size: 16px;
}
input[type="text"],
input[type="password"] {
	padding: 1em 20px;
	height: 45px;
}
.login-btn input {
	background-color: #5a5a5a;
	text-align: center;
	color: #fff;
	line-height: 45px;
}
.sel {
	margin-bottom: 50px;
	margin-top: 10px;
}

.box-btn {
	display: flex;
	position:relative;
}
.box-btn li {
	display: flex;
}
.box-btn li input {
	position: absolute;
	visibility: hidden;
}
.box-btn li label {
	display: inline-block;
	cursor: pointer;
	padding-left: 34px;
	position: relative;
}
.box-btn li:not(:last-of-type) label {
	margin-right: 13px;
}
.box-btn li span {
}
.box-btn li label::before {
	content: "";
	width: 24px;
	height: 24px;
	border: 1px solid #a0a0a0;
	position: absolute;
	border-radius: 50%;
	left: 0;
}
.radio:checked+label::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: #a0a0a0;
	border-radius: 50%;
	left: 3px;
	top: 3px;
}