.login-layout {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1060px) {
  .login-layout {
    margin-top: 20px;
  }
}

.login-layout__unit {
  width: 100%;
}

@media screen and (min-width: 1060px) {
  .login-layout__unit--login {
    width: 60%;
  }
}

@media screen and (min-width: 1060px) {
  .login-layout__unit--article {
    width: 40%;
  }
}

.article {
  padding: 25px 0 15px;
  box-sizing: border-box;
  max-width: 380px;
  margin: 40px auto 0;
  background-color: #fbfbfb;
  border-radius: 5px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 1060px) {
  .article {
    margin-top: 15px;
    margin-right: 20px;
    margin-left: 20px;
  }
}

.article__heading {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
#main .article__heading {
  font-size: 16px;
  font-weight: bold;
}

.article__heading-inner {
  position: relative;
  padding-left: 50px;
}
.article__heading-inner span {
  display: block;
}
.article__heading-inner img {
  position: absolute;
  left: 0;
  top: -10px;
  width: 40px;
  height: auto;
}

.article-list {
  padding-right: 25px;
  padding-left: 25px;
  margin: 0;
}

.article-list__item + .article-list__item {
  margin-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 7px;
}
.article-list__item a {
  color: currentColor;
  display: block;
  padding: 5px 8px;
  border-radius: 3px;
  transition: color 0.2s ease-in-out;
}
.article-list__item a:hover {
  color: #31b9dd;
}

.article-list__label {
  display: inline-block;
  font-size: 10px;
  color: #fff;
  margin-bottom: 0.3em;
  padding: 4px 6px;
  background-color: #9a9a78;
  border-radius: 3px;
  line-height: 1;
}

.article-list__title {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
}

.input-password {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.input-password__text::-ms-reveal {
  display: none;
}

.input-password__button {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: 48px;
  background-color: #f0f2f5;
  border: 1px solid #b6bdc4;
  border-radius: 4px;
  padding: 11px 1em;
  outline: 0;
  text-align: center;
  text-decoration: none;
  vertical-align: 0.5px;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
  color: #202427;
  cursor: pointer;
}
.input-password__button:not([disabled]):hover {
  background-color: #e1e6ea;
  border-color: #979fa5;
  color: #202427;
}

.twofactor-call-note {
  text-align: center;
}
@media screen and (min-width: 480px) {
  .twofactor-call-note > span {
    display: inline-block;
  }
}

.twofactor-button-layout {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  .twofactor-button-layout {
    width: 70%;
  }
}
.twofactor-button-layout > .c-button, .twofactor-button-layout > a {
  width: 100%;
}

.note {
  margin: 2em 0 0 0;
}

.note--list {
  list-style-type: disc;
  margin-left: 0;
  padding-left: 1.5em;
}

.note--list-orderd {
  list-style-type: decimal;
  margin-left: 0;
  padding-left: 1.5em;
}

.note--horizontal-rule {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px dashed #979fa5;
}

.note__item {
  font-size: 0.875rem;
}
.note__item + .note__item {
  margin-top: 0.8em;
}

.p-section:last-child {
  padding-top: 30px;
  border-top: 1px solid #e1e6ea;
}
