.login-plugin-link {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: underline;
    color: #b59674;
}

.login-plugin-button {
    width: 100%;
    padding: 12px 0;
    margin: 0;
    border: none;
    outline: none;
    border-radius: 0;
    background: #b59674;
    cursor: pointer;

    font-family: inherit;
    font-size: 16px;
    color: #ffffff;
}

.login-plugin-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5000;

    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

    display: none;
}

.login-plugin-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 5010;

    background: #ffffff;
    transform: translate3d(-50%, -50%, 0);

    display: none;
}

.login-plugin-close {
    position: absolute;
    top: -28px;
    right: 30px;

    width: 56px;
    height: 56px;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    border-radius: 999px;
    background: #b59674;
    cursor: pointer;
}

.login-plugin-close::before,
.login-plugin-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 13px;
    width: 30px;
    height: 1px;
    background: #ffffff;
    transform: rotate(45deg);
}

.login-plugin-close::after {
    transform: rotate(-45deg);
}

.login-plugin-message {
    box-sizing: border-box;
    width: 580px;
    padding: 70px 0;
    font-size: 14px;
    text-align: center;
}

.login-plugin-message h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;

    margin: 0 0 1em;
}

.login-plugin-login {
    box-sizing: border-box;
    width: calc(100vw - 40px);
    padding: 20px 40px;

    font-size: 14px;
    line-height: 1.4285;

    display: none;
}

.login-plugin-login__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 30px;
}

.login-plugin-login__head>div {
    margin-left: 20px;
}

.login-plugin-inputfield {
    margin-bottom: 1em;
}

.login-plugin-inputfield>input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #6b6d6c;
    outline: none;
    border-radius: 0;

    font-family: inherit;
    font-size: inherit;
    line-height: 1;
}

.login-plugin-inputfield>input::placeholder {
    color: #a6a6a6;
}

.login-plugin-login__errorHelper {
    background: #bd2828;
    padding: 0.5em;
    color: #ffffff;
    display: none;
}

.login-plugin-login__rememberWrapper {
    display: flex;
    margin: 24px 0;
}

.login-plugin-login__remember {
    flex: 1 1 auto;
}

.login-plugin-checkboxWrapper>[type="checkbox"] {
    width: 20px;
    height: 20px;
    outline: none;
    border-radius: 0;
    margin-right: 6px;
    vertical-align: middle;
}

.login-plugin-login__forgotPassword button {
    color: #000000;
    text-decoration: none;
}

.login-plugin-login__foot {
    margin-top: 20px;
    text-align: center;
}

.login-plugin-iframe {
    width: calc(100vw - 40px);
    height: 80vh;
}

.login-plugin-iframe>iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (min-width: 768px) {
    .login-plugin-login {
        width: 580px;
        padding: 50px 90px;
    }

    .login-plugin-iframe {
        width: 80vw;
        height: 80vh;
    }
}