/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section,figcaption,figure,main,details,menu{display:block}h1{font-size:2em;margin:.67em 0}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,code,kbd,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub,sup,progress{vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video,progress,canvas{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}hr,button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}legend,[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}template{display:none}[hidden]{display:none}



html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #eee;
  font-family: Helvetica;
  background: rgb(2,0,36);
background: -moz-linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(3,3,110,1) 44%, rgba(3,25,55,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(3,3,110,1) 44%, rgba(3,25,55,1) 100%);
background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(3,3,110,1) 44%, rgba(3,25,55,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#031937",GradientType=1);
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.wrapper {
  clear: both;
  max-width: 1024px;
  max-height: 100%;
  margin-right: auto;
  margin-left:  auto;
  padding: 2px 10px 20px;
}


.header {
  clear: both;
  margin-right: auto;
  margin-left:  auto;
  min-height: 112px;
  text-align: center;
}

.logo {
  display: inline-block;
  margin: 32px auto;
  padding-right: 16px;
  padding-left:  16px;
}
.logo__img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}


.login {
  clear: both;
  display: block;
  max-width: 320px;
  margin: 24px auto;
  padding: 12px 16px 16px;
  background-color: #333;
  background-color: rgba(56, 56, 56, 0.5);
  border-radius: 8px;
}


.login__heading {
  display: block;
  margin: .25em auto .75em;
  text-align: center;
  text-transform: uppercase;
}


.login__form {
  font-size: 1.125em;
}

.login__item {
  display: block; /* Fallback */
  display: flex;
  justify-content: space-between;
}

.login__item + .login__item {
  margin-top: 14px;
}


.login__input {
  float: right;
  display: block; /* Fallback */
  display: flex;
  justify-content: space-between;
  flex: 5 1 auto;
  min-height: 3em;
  margin:  0;
  padding: .7em .775em .6em;
  color: #333; /* Fallback */
  color: rgba(0, 0, 0, .6666);
  line-height: 1.2;
  background-color: #eee;
  border: 3px solid #999;
  border-top-right-radius:    5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: border     .25s ease-in-out,
                      background .25s ease-in-out;
          transition: border     .25s ease-in-out,
                      background .25s ease-in-out;
}
.login__input:focus,
.login__input:hover,
.login__input:active {
  color: #000;
  background-color: #fff;
  border-color: #bbb;
}

.login__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, .4);
}
.login__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, .4);
}
.login__input::placeholder {
  color: rgba(0, 0, 0, .4);
}


.login__label {
  float: left;
  display: block; /* Fallback */
  display: flex;
  order: -1;
  justify-content: space-between;
  flex: 5 1 auto;
  min-height: 3em;
  margin:  0;
  padding: .675em .3375em;
  color: #222; /* Fallback */
  color: rgba(0, 0, 0, .75);
  line-height: 1.2;
  text-align: center;
  background-color: #999;
  border: 3px solid #999;
  border-top-left-radius:    5px;
  border-bottom-left-radius: 5px;
  -webkit-transition: border     .25s ease-in-out,
                      background .25s ease-in-out;
          transition: border     .25s ease-in-out,
                      background .25s ease-in-out;
  cursor: pointer;
}
.login__input:focus ~ .login__label,
.login__input:hover ~ .login__label,
.login__input:active ~ .login__label {
  border-color:     #bbb;
  background-color: #bbb;
}

/* IcoMoon.io */
.icon {
  display: inline-block;
  width:  1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill:   currentColor;
}
.icon-user {
  width: .7142857142857142em;
}
.icon-lock {
  width: .6428571428571428em;
}

.login__icon {
  display: block;
  margin-right: auto;
  margin-left:  auto;
  font-size: 1.25em;
}

.login__description {
  /* Visually hidden */
  position: absolute;
  width:   1px;
  height:  1px;
  margin: -1px;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  border: 0;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
}


.login__submit {
  display: block;
  width: 100%;
  margin:  0;
  padding: .5em .5em .575em;
  color: #111; /* Fallback */
  color: rgba(0, 0, 0 ,.875);
  font-weight: bold;
  font-size: 1.125em;
  line-height: 1.2;
  text-transform: uppercase;
  background-color: #999;
  background-image: -webkit-gradient(linear,
                                     left top, left bottom,
                                     from(#ccc),
                                     to(#999));
  background-image: linear-gradient(to bottom,
                                    #ccc   0%,
                                    #999 100%);
  border: none;
  border-radius: 5px;
  -webkit-transition: background .25s ease-in-out;
          transition: background .25s ease-in-out;
  cursor: pointer;
}
.login__submit:focus,
.login__submit:hover {
  background-color: #ccc;
  background-image: -webkit-gradient(linear,
                                     left top, left bottom,
                                     from(#fff),
                                     to(#ccc));
  background-image: linear-gradient(to bottom,
                                    #fff   0%,
                                    #ccc 100%);
}
.login__submit:active {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom,
                                     color-stop(#ccc,   0%),
                                     color-stop(#fff, 100%));
  background-image:  linear-gradient(to bottom,
                                     #ccc   0%,
                                     #fff 100%);
}


.main {
  clear: both;
  margin: 16px auto;
  padding-top:    8px;
  padding-bottom: 8px;
}


.footer {
  clear: both;
  margin: 16px auto;
  padding-top:    8px;
  padding-bottom: 8px;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, .6666);
}
