@import "/res/less/func";

.auth-top {
  position: fixed;
  padding: 1px 5px;
  top: 5px;
  left: 5px;
  background: rgba(175, 175, 175, 0.90);
  .border-radius(5px);
  font-size: 1em;
  z-index: 999;
  div{
    a:after{
      content: ' ';
      display: block;
    }
  }
}

@media (max-width: 1024px) {
  .auth-top {
    top: 0;
    left: 0;
    background: rgba(175, 175, 175, 0.9);
    .border-radius(0);
    width: 100%;
    height: 1.4em;
    line-height: 1.4em;
    div{
      display: inline-block;
      a:not(:last-child):after{
        content: ', ';
        display: inline-block;
      }
    }
  }
  html{
    margin-top: 1.4em;
  }
}


.auth-register, .auth-enter, .auth-profile  {
  margin: 2em 0;
  width: 100%;
  text-align: center;
  label{
    display: inline-block;
    width: 50%;
    text-align: left;
    input{
      float: right;
    }
  }
  input{
    width: 50%;
  }
}