#px-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    background: transparent;
    font-family: Arial, sans-serif;
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease, visibility .25s ease;
}

#px-overlay.px-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.px-box {
    width: 380px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 30px 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(220, 225, 232, 0.9);
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
}

.px-logo {
    margin: 0 0 27px;
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    font-style: italic;
    color: #f36b2b;
}

.px-title {
    margin: 0 0 25px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #292929;
}

.px-field {
    position: relative;
}

.px-input {
    width: 100%;
    height: 49px;
    box-sizing: border-box;
    padding: 0 14px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    outline: none;
    background: #fff;
    color: #333;
    font-size: 14px;
}

.px-password {
    padding-right: 46px;
}

.px-eye {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: #222;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.px-button {
    width: 100%;
    height: 49px;
    margin-top: 1px;
    border: 0;
    border-radius: 6px;
    background: #087fe5;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}

.px-button:hover {
    background: #0672cf;
}

.px-button:active {
    transform: translateY(1px);
}

.px-info {
    margin: 15px 0 17px;
    font-size: 12px;
    line-height: 1.5;
    color: #777;
}

.px-forgot {
    border: 0;
    padding: 0;
    background: transparent;
    color: #087fe5;
    font-size: 13px;
    cursor: pointer;
}

.px-forgot:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    #px-overlay {
        padding: 16px;
    }

    .px-box {
        width: 100%;
        max-width: 380px;
        padding: 28px 22px;
    }

    .px-logo {
        font-size: 33px;
    }
}
