.tab-menu {
  display: flex;
  align-items: flex-start flex-end;
  justify-content: left;
  padding: 0px 15px;
}
.tab-menu-item {
  text-align: center;
  padding: 10px 10px;
  width: 50%;
  margin-right: 2px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: var(--gray-color);
  border-bottom: 3px solid var(--base-color);
}
.tab-menu-item:last-of-type {
  margin-right: 0px;
}
.tab-menu-item.is-active {
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
}
.login-form-field.is-hide {
  display: none;
}

.local-nav-login__button.is-disable {
  color: #ccc;
  border-color: #f3f2f2;
  background: #f3f2f2;
  pointer-events: none;
  font-weight: normal;
}

#forgot-login-info.is-hide {
  display: none;
}
