body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.form {
    width: 50%;
    min-width: 340px;
    max-width: 400px;
    -ms-grid-column-align: center;
    justify-self: center;
    overflow: hidden;
    height: -webkit-calc(100% - 100px);
    height: -moz-calc(100% - 100px);
    height: calc(100% - 100px);
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.logo-easyplus {
    max-width: 40%;
    min-width: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column-align: center;
    justify-self: center;
    pointer-events: none;
    user-select: none;
}

.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255 255 255);
    z-index: 9999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 380px;
    /* transition: opacity 0.2s, display 0.2s, visibility 0.2s; */
}

.loader-content {
    width: 100px;
    height: 100px;
    background-image: url('/image/easyplus-nobg-opt-sm.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 84px 46px;
    top: calc((-327px / 2) - 20px);
    position: relative;
    pointer-events: none;
    left: 10px;
}

/* Reveal password button styles */
.dx-button-reveal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    margin-left: 6px;
    cursor: pointer;
    user-select: none;
    place-content: center;
    text-align: center;
    padding-top: 4px;
}
.dx-button-reveal .reveal-eye {
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
}
/* Ensure reveal button aligns to the left of the clear button and starts hidden */
.dx-texteditor-buttons-container .dx-button-reveal {
    order: -1;
    margin-right: 6px;
    display: none;
}
.dx-button-reveal .dx-icon {
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
}