/* Base styles for authentification pages */
/* auth pages */
.authTextCenter {
    text-align: center;
}
.authPage {
    position: relative;
    background: linear-gradient(to left, #abcc51, #74c439);
}
.authPage::before {
    content: '';
    width: 100%;
    position: absolute;
    height: 1500px;
    bottom: -40%;
    left: 0;
    background: url(/content/static/MH/img/mismo/mismo_bg.png) bottom center no-repeat;
}
.authAccentButton.webix_el_button button,
.authAccentButton.webix_el_toggle button {
    background: yellowgreen;
    color: white;
    text-transform: uppercase;
    font-size: 18px;
}
.authAccentButton.webix_el_button.webix_secondary button:focus,
.authAccentButton.webix_el_button.webix_secondary button:hover, 
.authAccentButton.webix_el_toggle.webix_secondary button:focus, 
.authAccentButton.webix_el_toggle.webix_secondary button:hover {
    background-color: #86b32b;
}
.authLink {
    color: #86b32b;
    cursor: pointer;
    font-size: 16px;
    text-decoration: underline;
}
.authHeader {
    cursor: pointer; 
}
.authHeaderContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;

}
.authHeaderContainer img {
    height: 60px;
}
.authHeaderText {
    font-size: 18px;
    font-weight: 500;
    color: #848282;
    padding-top: 7px;
}
.authTextContainer{
    font-size: 14px;
    color:#848282;
    line-height: initial;
} 
/* auth pages */