html,
body.page-template-default,
body.page-template,
body.page.page-id,
body.page-slug-jvh-easy-login,
body.slug-jvh-easy-login,
body.page-jvh-easy-login,
body.page-template-page-jvh-easy-login {
    margin: 0;
    height: 100%;
    overflow: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    background: transparent !important;
}

body.page-jvh-easy-login,
body.page-jvh-easy-login * {
    font-family: "Segoe UI", Arial, sans-serif;
    text-align: center;
}

body.page-jvh-easy-login header,
body.page-jvh-easy-login #header,
body.page-jvh-easy-login hr {
    display: none !important;
}

.dgcrm-easy-login-page {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.dgcrm-easy-login-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../images/login-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.dgcrm-easy-login-page__overlay {
    position: fixed;
    inset: 0;
    background: rgba(25, 147, 162, 0.5);
    z-index: 1;
}

.dgcrm-easy-login-page__wrap {
    position: relative;
    bottom: 5%;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dgcrm-easy-login-page__card {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 28px 28px 22px;
    margin: 20px;
}

.dgcrm-easy-login-page__title {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.2;
    color: #0f7d8a;
    font-weight: 500;
}

.dgcrm-easy-login-page__content {
    color: #333;
    font-size: 16px;
    line-height: 1.65;
}

.dgcrm-easy-login-page__content p:last-child {
    margin-bottom: 0;
}

.dgcrm-easy-login-page__content a {
    color: #007583;
    text-decoration: none;
}

.dgcrm-easy-login-page__content a:hover {
    color: #00525c;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .dgcrm-easy-login-page__card {
        padding: 22px 20px 18px;
        margin: 16px;
    }

    .dgcrm-easy-login-page__title {
        font-size: 24px;
    }
}