* {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
html,
body,
#an {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Helvetica Neue', Roboto, sans-serif;
    font-weight: normal;
    font-size: 14px;
}
body{
    background: url('resources/ETA/eta-wallpaper.jpg') no-repeat center center;
    overflow: hidden;
}

input, button, select, textarea {
    font-weight: normal;
    line-height: 1.42857;
    vertical-align: middle;
    font-size: 14px;
    line-height: 16px;
}
button:focus {
    outline:0;
}

.login {
  position:relative;
  top: 50%;
  width: 310px;
  display: table;
  margin: -280px auto 0 auto;
  border-radius: 5px;
}
.legend {
  width: 100%;
  display: block;
  padding: 15px;
  color: #fff;
  margin-bottom: 25px;
}

.input {
    width: 260px;
  position: relative;
      border: none;
    border-bottom: 2px solid #FFFFFF;
    padding: 10px 0;
    color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
}

.input input {
    width: 100%;
    color: #FFFFFF;
    height: 28px;
    border: none;
    background: transparent;
    padding: 0 10px;
    background: transparent
}
.input input:focus {
  /*padding: 10px 5px 10px 10px;*/
  outline: 0;
  border-color: #003359;
}
.input.username {
    background: url('resources/eta/ico_user.png') no-repeat;
    background-position: right;
    background-size: 20px 20px;
    background-repeat: no-repeat;
}
.input.password {
     background: url('resources/eta/ico_lock.png') no-repeat;
    background-position: right;
    background-size: 20px 20px;
    background-repeat: no-repeat;
}
.submit {
    width: 100%;
    min-height: 45px;
    color: white;
    background: #002b54;
    border: none;
    margin-top: 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    margin-top: 30px;
    cursor: pointer;
}
.submit.disabled {
    opacity: 0.4;
    cursor: default !important;
    pointer-events: none;
}

.errors {
  bottom: -2px;
    margin: 0;
    padding: 0;
    border: 0;
  text-align: center;
  color: rgb(255, 106, 0);
  background: transparent;
  padding: 10px 0;
  transition: 0.2s ease-out;
  display: none;
}

.loading-overlay{
    position: fixed;
    top: 0;
    background: black;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    display: none;
}
.loading-spinner{
    position: relative;
    max-width: 40px;
    max-height: 40px;
    margin: -40px auto 0 auto;
    top: 40%;
}

.footerholder {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    position: fixed;
    text-align: center;
    width: 100%;
}
.footer {
    height: 55px;
    padding: 5px;
    margin: auto;
    width: 160px;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #607F9E;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #607F9E;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #607F9E;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #607F9E;
}
:placeholder-shown { /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color:    #607F9E;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none;           /* non-prefixed version, currently
                                  not supported by any browser */
}