article {
  max-width: 60em;
  margin: 0 auto;
}

.logincontainer {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-around;
  margin: 1em;
}
.logincontainer > * {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  margin: 0 1em;
}

.or {
  position: relative;
}
.or > span {
  background-color: white;
}
.or:after {
  content: '';
  background-color: black;
  opacity: 0.2;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  left: 50%;
  z-index: -1;
}
.quicklinks {
  float: right;
  display: flex;
  flex-flow: column nowrap;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 0.5em 1em;
  box-shadow: 0.2em 0.2em 1em rgba(0,0,0,0.2);
  margin-top: 3em;
}
.quicklinks:before {
  content: 'Quick links:'
}
.quicklinks a {
  margin-left: 1em;
}

