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);
    font-size: 14px;
}

.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;
}

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

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

.formPanel {
    padding: 24px;
}

.formTitle {
    font-weight: 600;
    color: #003462;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 16px;
}

.formItem {
    position: relative;
    display: flex;
    margin-bottom: 15px;
    text-align: left;
    flex-direction: column;
}

.formItemValue {
    flex: 0 1 auto;
}

.formErrorMessage {
    color: #df1616;
    line-height: 24px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
}

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

.formItemLabel {
    color: #003462;
    line-height: 24px;
    font-size: 14px;
    padding-right: 20px;
    text-align: left;
    width: 180px;
}

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

.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;
}

.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: 1px;
    line-height: 14px;
    padding: 8px 0;
    outline: 0;
    vertical-align: middle;
    border-bottom-color: rgba(0, 52, 98, 0.5);
    min-width: 96px;
    align-self: flex-end;
    margin-top: 9px;
}

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

.errorPanel {
    padding: 20px;
    border: 1px solid #df1616;
    display: flex;
    align-self: start;
}

.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;
}

.hide {
    display: none;
}

input:-internal-autofill-selected {
    color: #003462 !important;
    background-color: #ffffff !important;
    font: 400 14px "Source Sans Pro", sans-serif !important;
}

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