html, body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    background: -webkit-radial-gradient(#009ac8, #0086ad);
    background: -o-radial-gradient(#009ac8, #0086ad);
    background: -moz-radial-gradient(#009ac8, #0086ad);
    background: radial-gradient(#009ac8, #0086ad);
}

.mainPanel {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 330px;
}

.logo {
    font-family: vaisala-ui;
    color: #ffffff;
    font-size: 42px;
}

.productName {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    padding-top: 24px;
    padding-bottom: 30px;
    line-height: 24px;
}

.panelWrapper {
    background: #ffffff;
    width: 100%;
    margin-bottom: 10px;
}

.panel {
    padding: 24px;
}

.transparentPanelWrapper {
    background: transparent;
    width: 100%;
    margin-top: -3px;
}

.loginPanel {
    margin-bottom: 0px;
    border-bottom: solid 1px #E8E8E8;
}

.panelShortPadding {
    padding-left: 5px;
    padding-right: 5px;
}

.welcomeText {
    padding-bottom: 8px;
    font-size: 18px;
    line-height: 24px;
    color: #003462;
    font-weight: 600;
}

.welcomeText > * {
    margin-top: 0;
    margin-bottom: 0;
}

.welcomeText > h1 {
    font-weight: 600;
    font-size: 1.31rem;
    color: #003462; /* $dark-blue */
}

.welcomeText > h2 {
    font-weight: 600;
    font-size: 1.125rem;
    color: #003462; /* $dark-blue */
    line-height: 1.5rem; /* @line-height-M */
}

.welcomeText > h3 {
    font-weight: 600;
    font-size: 1rem;
    color: #003462; /* $dark-blue */
}

.welcomeText > h4 {
    font-weight: 600;
    font-size: 0.875rem;
    color: #003462; /* $dark-blue */
}

.welcomeText > a {
    color: #009AC8; /* $vaisala-aqua */
}

.formText {
    font-weight: 600;
    color: #003462;
    font-size: 18px;
    line-height: 24px;
}

.usernameText {
    font-weight: 400;
    line-height: 24px;
    flex: 0 0 auto;
    font-size: 14px;
    color: #003462;
    margin-top: 16px;
}

.formTitle {
    padding-bottom: 16px;
}

.formVersion {
    font-size: 14px;
    font-weight: 400;
    color: #003462;
    padding-bottom: 20px;
    float: right;
}

.flexColumn {
    display: flex;
    flex-direction: column;
}

.formLabel {
    color: #003462;
    line-height: 24px;
    font-size: 14px;
}

.formInput {
    border-radius: 0;
    padding: 0 4px;
    border: solid 1px #b5b5b5;
    color: #003462;
    background-color: #ffffff;
    font: 400 14px "Source Sans Pro", sans-serif;
    line-height: 26px;
    height: 26px;
}

.hidden {
    display: none;
}

.formInput:focus {
    border-color: #009ac8;
    outline: 0;
    box-shadow: 0px 0px 5px 0px rgba(26, 180, 226, 0.5);
}

.flexRow {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flexLeft {
    flex-grow: 1;
    margin-right: 5px;
}

.flexRight {
    flex-grow: 1;
    margin-left: 5px;
}

.actionButton {
    height: 32px;
    cursor: pointer;
    background: #009ac8;
    border: 1px solid #009ac8;
    border-radius: 1px;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;
    margin-top: 10px;
    line-height: 14px;
    padding: 8px 0;
    outline: 0;
    vertical-align: middle;
    border-bottom-color: rgba(0, 52, 98, 0.5);
    margin-left: 15px;
}

.actionButton:hover {
    background: #1ab4e2;
}

.errorPanel {
    padding: 20px;
    border: 1px solid #df1616;
}

.errorIcon {
    font-family: vaisala-ui;
    font-size: 20px;
    color: #df1616;
    float: left;
    margin-right: 6px;
}

.errorIconText {
    font-size: 14px;
    color: #003462;
}

.errorText {
    font-size: 14px;
    color: #003462;
    padding-left: 8px;
}

.resetPasswordText {
    font-size: 14px;
    padding-top: 17px;
    line-height: 16px;
    color: #009ac8;
}

.resetPasswordText a:link, .resetPasswordText a:visited {
    color: #009AC8;
}

.resetPasswordText a:hover {
    color: #006795;
}

.helpPanel {
    padding: 8px 3px 10px 3px;
    color: #003462;
    font-size: 16px;
    cursor: pointer;
}

.helpPanel a:link, .helpPanel a:visited {
    color: #009AC8;
}

.helpText {
    font-size: 14px;
    color: #003462;
    margin: 5px 15px;
}

.helpIconText {
    margin-left: 3px;
    float: left;
    color: #009ac8;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
}

.helpIconText:hover {
    color: #006795;
}

.helpIcon {
    font-family: vaisala-ui;
    font-size: 21px;
    color: #003462;
    float: left;
}

.privacyText {
    font-size: 13px;
    color: #e8e8e8;
    margin: 0;
    font-weight: normal;
    /*padding: 0 8px;*/
}

.privacyText a:link, .privacyText a:visited {
    color: #e8e8e8;
}

.privacyText a:hover {
    color: #f2f2f2;
}

.versionText {
    text-align: right;
    font-size: 13px;
    color: #e8e8e8;
    margin: 0;
    font-weight: normal;
    /* padding: 0 8px; */
}

.notifPanelWrapper {
    background: #ffffff;
    width: 100%;
    max-height: 20%;
    overflow: auto;
}

.notifPanel {
    padding: 20px;
    border: none;
    max-width: 800px;
}

.notifIcon {
    font-family: vaisala-ui;
    font-size: 21px;
    color: #003462;
    float: left;
    margin-right: 8px;
}

.notifIconText {
    font-size: 16px;
    color: #003462;
}

.backButton {
    cursor: pointer;
    align-self: flex-start;
    padding: 3px 0px;
}

.backButton:hover {
    background: #e6f5fa;
}

.backIcon {
    font-family: vaisala-ui;
    cursor: pointer;
    color: #009ac8;
    float: left;
    margin-right: 3px;
    font-size: 1.429em;
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px;
    margin-bottom: -1px;
}

.backIconText {
    line-height: 16px;
    padding: 8px 0;
    font: 400 14px Source Sans Pro,sans-serif;
    color: #009ac8;
}

.testInstancePanelWrapper {
    position: absolute;
    top: 0;
    left: 0;
}

.testInstancePanel {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.hide {
    display: none;
}

.footer {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    line-height: 24px;
}