.split {
  margin: 0 10px;
}

.nav-bar-pc .logo-link {
  font-size: 18px;
}

.mb-logo a {
  color: #fff;
  text-decoration: none;
}

.mb-logo .split {
  margin: 0 5px;
}

.login-container {
  margin: 0 auto;
  max-width: 480px;
  border-radius: 4px;
  padding: 60px 40px 40px 40px;
  background-color: #ffffff;
}

input.primary {
  width: 100%;
  outline: none;
  border: none;
  height: 50px;
  font-size: 16px;
  transition: all .2s ease;
  border-bottom: solid 1px #d4d4d4;
}

input.primary:focus {
  border-color: #ff6600;
}

input[type=checkbox].primary {
  margin: 0;
  width: auto;
  display: none !important;
  opacity: 0 !important;
  width: 0;
  height: 18px;
}


input[type=checkbox].primary+label::before {
  content: "\2713";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  color: #FF6600;
  text-align: center;
  line-height: 16px;
  color: transparent;
  display: inline-block;
}

input[type=checkbox].primary+label::after {
  content: "";
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #9a9a9a;
  border-radius: 2px;
}

input[type=checkbox].primary:checked+label::before {
  color: #ff6600;
}

label {
  font-weight: normal !important;
  user-select: none !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  margin: 0 !important;
  vertical-align: middle;
  position: relative;
}

.login-btn {
  width: 100%;
  outline: none;
  border: none;
  padding: 10px 0;
  color: #ffffff;
  border-radius: 20px;
  transition: all .2s ease;
  background-color: #ff6600;
}

.login-btn:hover {
  background-color: #ff802b;
}

span.primary {
  color: #ff6600;
  cursor: pointer;
}

span.primary:hover {
  color: #ff802b;
}

.split-line {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}

.split-line::before,
.split-line::after {
  /* flex: 1; */
  width: 20%;
  content: "";
  border-top: 1px solid #e5e5e5;
  transform: translateY(50%);
}

.other {
  display: flex;
  margin: 0 auto;
  max-width: 200px;
  justify-content: space-around;
}

.other-item {
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  transition: all .2s ease;
  background-color: #fafafa;
}

.other-item:hover {
  background-color: #f4f4f4;
}

.other-item img {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}