html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arimo', sans-serif;
}
.login-wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    width: 100%;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.l-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 39, 50, 0.5);
    /*backdrop-filter: blur(3px);*/
}
.l-form {
    /*width: 400px;*/
    margin: 0 auto;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--mainFgColorBright);
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    padding: 30px;
    /*flex-wrap: wrap;*/
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
}
.l-form .row {
    margin: 2px;
    display: flex;
    flex-direction: row;
    flex: 1 1 50%;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}
.l-form .cell {
    margin: 2px;
    display: flex;
    flex-direction: column;
    /*flex: 1 1 50%;*/
    position: relative;
}
input, select, textarea {
    min-width: 250px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    background-color: var(--mainFgColorBright);
    color: #2f2c2f;
    border: solid .0625rem #ebebeb;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1em;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}
.submit-btn {
    font-size: 14px;
    display: flex;
    align-items: center;
    align-self: normal;
    justify-content: center;
    box-sizing: border-box;
    padding: 15px 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    margin: 0;
    background-color: var(--mainBgColor);
    color: var(--mainFgColorBright);
}
.back {
    position: absolute;
    bottom: -35px;
    margin: 0;
    padding: 8px 15px;
    background-color: var(--mainBgColor);
    box-sizing: border-box;
    box-shadow: inset 0 5px 6px -4px #000000a6;
    border-radius: 0 0 5px 5px;
}
.back a {
    color: var(--mainFgColorBright);
    text-decoration: none;
    text-align: center;
}
.error {
    border-color: var(--errorColor);
}
.errorNotification {
    background: var(--errorColor);
    color: var(--mainFgColorBright);
    padding: 10px;
    border-radius: 3px;
    position: relative;
    display:none;
    box-shadow: 1px 1px 1px #aaaaaa;
    margin-top: 10px;
}
.errorNotification:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--errorColor);
    position: absolute;
    top: -10px;
}
.errorNotification  a{
    color: var(--mainFgColorBright);
}
.show-password {
    position: absolute;
    top: 24px;
    right: 20px;
    padding: 0;
    height: auto;
    width: 24px;
    display: flex;
    z-index: 0;
    cursor: pointer;
    transform: translateY(-50%);
}
.show-password > svg {
    height: auto;
    max-height: 100%;
    width: 100%;
    transition: fill .1s linear;
    fill: #555555;
}
.show-password > svg:hover {
    fill: var(--mainBgColor);
}


@media screen and (max-width: 600px) {
    .l-form {
        width: 90%;
        padding: 10px 30px;
    }
}