/** login styles */
@media (max-width: 575px) {
    img#logo {
        width: 75%;
    }
}

span.support-break {
    display: block;
    line-height: 0.8em;
}

/** hideShowPassword */
::-ms-reveal,
::-ms-clear {
    display: none !important;
}
.hideShowPassword-wrapper input[name="_pass"] {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.hideShowPassword-toggle {
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 0.25em;
    cursor: pointer;
    font-size: 100%;
    height: 44px;
    margin: 0;
    max-height: 100%;
    padding: 0;
    overflow: hidden;
    color: transparent;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.hideShowPassword-toggle:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: #666;
    position: absolute;
    top: 0.5em;
    left: 5px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 16px;
}
.hideShowPassword-toggle-show:before {
    content: "\f06e";
}
.hideShowPassword-toggle-hide:before {
    content: "\f070";
}
.hideShowPassword-toggle:hover,
.hideShowPassword-toggle:focus,
.hideShowPassword-toggle:active {
    outline: none !important;
}
.hideShowPassword-toggle::-moz-focus-inner {
    border: 0;
}
/** end hideShowPassword */