@charset "UTF-8";
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {height: 100%;}
body {min-height: 100%;}
body {
    position: relative;
    margin: 0;
    padding: 0;
    background: #0073AC url(../images/background.png) center top no-repeat;
}
#login-panel {
    position: relative;
    top: 15vh;
    margin-left: auto; margin-right: auto;
    width: 400px; height: 400px;
    background: #F2F2F2 url(../images/login-background.png) repeat-x;
    border-radius: 7px;
    box-shadow: 0px 5px 8px rgba(0,0,0,0.5);
    text-align: right;
    display: flex;
    justify-content: center;
    align-items: center;
}
#login-panel > div {
    max-width: 244px;
    margin: 10%;
}
#logo {
    width: 100%; height: auto;
}
@media (max-width: 434px) {
  #login-panel {
      position: absolute;
      top: 0;
      width: 100%; height: 100%;
      border-radius: 0;
  }
}
#logo-block {
    text-align: right;
    margin-bottom: 50px;
}

/* Form styles */

.input-container {
    position: relative;
}
.input-container.username::before {
    position: absolute;
    left: 0; top: 0;
    width: 34px; height: 100%;
    content: "";
    background: url(../images/icon-user.png) no-repeat;
    background-size: 16px;
    background-position: 9px center;
}
.input-container.email::before {
    position: absolute;
    left: 0; top: 0;
    width: 34px; height: 100%;
    content: "";
    background: url(../images/icon-mail.png) no-repeat;
    background-size: 16px;
    background-position: 9px center;
}
.input-container.password::before {
    position: absolute;
    left: 0; top: 0;
    width: 34px; height: 100%;
    content: "";
    background: url(../images/icon-lock.png) no-repeat;
    background-size: 16px;
    background-position: 9px center;
}
.input-container > input {
    display: block;
    width: 100%;
    margin: 1em 0 1em 0;
    padding: 7px; padding-left: 34px;
    -webkit-appearance: none;
    border: 1px solid #D9D9D9;
    border-radius: 0;
}
#password-input {
    padding-right: 26px;
}
#password-visibility-toggle {
    position: absolute;
    right: 6px; top: 6px;
    padding: 2px;
}
form ::placeholder {
    color: #B3B3B3;
    opacity: 1;
}
.button {
    margin-top: 1em;
    width: 120px; height: 32px;
    background: #0090D7 url(../images/login-button-background.png) repeat-x;
    border: 1px solid #007abc;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    text-shadow: 0px -1px 0px #00466c;
}

/* Paragraph styles (block) */

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1;
}
h1, p, li {
    line-height: 1.4;
    font-style: normal;
}
h1 {
    margin-top: 1.4em; margin-bottom: 0.35em;
    font-size: 36px;
    font-weight: normal;
    line-height: 1.1;
}
p, li, label, input {
    font-size: 14px;
}
p {
    margin-top: 0.5em; margin-bottom: 0.35em;
}
ul,
ol {
    margin: 0.35em auto 0.7em 0;
    padding-left: 1em;
}
li, li p {
    margin-top: 0.35em; margin-bottom: 0.35em;
}
.caption,
.footnote {
    margin-top: 0; margin-bottom: 1em;
    font-size: 12px;
}
.logo-tagline {
    margin: 0.8em -0.2em 2em 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #878787;
}

/* Character styles (inline) */

a[href] {
	color: #878787;
	text-decoration: none;
}
a:hover, a:active {
	color: #0090D7;
}
.alert {
    padding-top: 0.5em; padding-bottom: 0.5em;
    background-color: #db6998;
    color: white;
    font-weight: bold;
    text-align: center;
}