/* ==========================================================================
   DKZ Reforged Login Screen
   File: assets/css/login.css

   Purpose:
   - Skin wp-login.php only.
   - Keep the login page isolated from the front-end header, BuddyPress,
     bbPress, and wp-admin styling.
   ========================================================================== */

body.login {
    min-height: 100vh !important;
    color: #d7d7d7 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    background:
        linear-gradient(rgba(10, 12, 14, 0.74), rgba(10, 12, 14, 0.86)),
        url("../images/BG-FULL.jpg") center top / cover fixed no-repeat !important;
}

body.login #login {
    width: 360px !important;
    padding: 118px 0 0 !important;
}

body.login h1 a {
    display: block !important;
    width: 307px !important;
    height: 45px !important;
    margin: 0 auto 24px !important;
    overflow: hidden !important;
    text-indent: -9999px !important;
    background: url("../images/digital-knightz-title.png") center center / contain no-repeat !important;
    box-shadow: none !important;
}

body.login form {
    margin-top: 0 !important;
    padding: 24px 26px 26px !important;
    background:
        linear-gradient(rgba(35, 40, 43, 0.94), rgba(21, 25, 27, 0.97)),
        url("../images/BG-Block.jpg") center center / auto repeat !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 28px rgba(0, 0, 0, 0.72) !important;
}

body.login form p {
    margin-bottom: 18px !important;
}

body.login label {
    color: #e6e6e6 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
}

body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"] {
    min-height: 40px !important;
    margin-top: 6px !important;
    color: #f2f2f2 !important;
    background: #111517 !important;
    border: 1px solid #3c454a !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 4px rgba(0, 0, 0, 0.82),
        0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.login input[type="text"]:focus,
body.login input[type="password"]:focus,
body.login input[type="email"]:focus {
    border-color: #b81525 !important;
    outline: none !important;
    box-shadow:
        0 0 0 1px rgba(184, 21, 37, 0.55),
        inset 0 1px 4px rgba(0, 0, 0, 0.82) !important;
}

body.login .forgetmenot {
    display: flex !important;
    align-items: center !important;
    min-height: 39px !important;
}

body.login .forgetmenot label {
    color: #d7d7d7 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

body.login input[type="checkbox"] {
    background: #111517 !important;
    border-color: #3c454a !important;
    border-radius: 0 !important;
}

body.login .button-primary {
    min-height: 39px !important;
    padding: 0 20px !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    background: linear-gradient(to bottom, #d52235 0%, #a71525 52%, #75101b 100%) !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.82) !important;
}

body.login .button-primary:hover,
body.login .button-primary:focus {
    background: linear-gradient(to bottom, #ef2b40 0%, #bd182b 52%, #86111d 100%) !important;
    border-color: #050505 !important;
}

body.login #nav,
body.login #backtoblog {
    margin: 16px 0 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

body.login #nav a,
body.login #backtoblog a {
    color: #d7d7d7 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    text-shadow: 0 1px 0 #000000 !important;
    text-transform: uppercase !important;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
    color: #ff2638 !important;
}

body.login .privacy-policy-page-link {
    display: none !important;
}

body.login .message,
body.login .notice,
body.login #login_error {
    color: #e6e6e6 !important;
    background:
        linear-gradient(rgba(35, 40, 43, 0.96), rgba(21, 25, 27, 0.98)),
        url("../images/BG-Block.jpg") center center / auto repeat !important;
    border-left: 4px solid #b81525 !important;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.55) !important;
}

/* --------------------------------------------------------------------------
   WordPress login-page cleanup

   WordPress core and some plugins inject extra controls on wp-login.php
   outside the main username/password fields: language selector, password
   visibility buttons, generated password panels, reset-password hints, and
   browser autofill states. These are the common source of white boxes on the
   login screen. Keep this scoped to body.login only.
   -------------------------------------------------------------------------- */

body.login *,
body.login *::before,
body.login *::after {
    box-sizing: border-box !important;
}

body.login .language-switcher,
body.login #language-switcher {
    margin-top: 22px !important;
    padding: 14px 16px !important;
    color: #d7d7d7 !important;
    background:
        linear-gradient(rgba(35, 40, 43, 0.92), rgba(21, 25, 27, 0.96)),
        url("../images/BG-Block.jpg") center center / auto repeat !important;
    border: 1px solid #050505 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 18px rgba(0, 0, 0, 0.58) !important;
}

body.login .language-switcher label,
body.login #language-switcher label {
    color: #e6e6e6 !important;
}

body.login select,
body.login .wp-core-ui select,
body.login #language-switcher select,
body.login .language-switcher select {
    min-height: 36px !important;
    color: #f2f2f2 !important;
    background-color: #111517 !important;
    border: 1px solid #3c454a !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 4px rgba(0, 0, 0, 0.82),
        0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.login select:focus,
body.login .wp-core-ui select:focus {
    color: #ffffff !important;
    border-color: #b81525 !important;
    outline: none !important;
    box-shadow:
        0 0 0 1px rgba(184, 21, 37, 0.55),
        inset 0 1px 4px rgba(0, 0, 0, 0.82) !important;
}

body.login select option {
    color: #f2f2f2 !important;
    background: #111517 !important;
}

body.login .wp-pwd,
body.login .user-pass-wrap,
body.login .reset-pass-submit,
body.login .admin-email__actions,
body.login .admin-email__details {
    color: #d7d7d7 !important;
    background: transparent !important;
}

body.login .wp-pwd .button,
body.login .button-secondary,
body.login .button.wp-hide-pw,
body.login .button.wp-generate-pw {
    color: #d7d7d7 !important;
    background: linear-gradient(to bottom, #30383d 0%, #23282b 100%) !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.72) !important;
}

body.login .wp-pwd .button:hover,
body.login .wp-pwd .button:focus,
body.login .button-secondary:hover,
body.login .button-secondary:focus {
    color: #ffffff !important;
    background: linear-gradient(to bottom, #3b454b 0%, #2b3236 100%) !important;
    border-color: #b81525 !important;
}

body.login .dashicons,
body.login .dashicons::before {
    color: inherit !important;
}

body.login .description,
body.login .indicator-hint,
body.login .admin-email__details p,
body.login .admin-email__details div {
    color: #d7d7d7 !important;
    background: transparent !important;
}

body.login #pass-strength-result {
    margin-top: 10px !important;
    color: #f2f2f2 !important;
    background: #111517 !important;
    border: 1px solid #3c454a !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.login #pass-strength-result.short,
body.login #pass-strength-result.bad {
    color: #ffffff !important;
    background: #76101b !important;
    border-color: #b81525 !important;
}

body.login #pass-strength-result.good {
    color: #111517 !important;
    background: #d6a034 !important;
    border-color: #f0c15a !important;
}

body.login #pass-strength-result.strong {
    color: #111517 !important;
    background: #bfff8a !important;
    border-color: #83c653 !important;
}

body.login input:-webkit-autofill,
body.login input:-webkit-autofill:hover,
body.login input:-webkit-autofill:focus,
body.login textarea:-webkit-autofill,
body.login select:-webkit-autofill {
    -webkit-text-fill-color: #f2f2f2 !important;
    caret-color: #f2f2f2 !important;
    box-shadow: 0 0 0 1000px #111517 inset !important;
    border: 1px solid #3c454a !important;
    transition: background-color 9999s ease-in-out 0s !important;
}

body.login .login-action-confirm_admin_email #login,
body.login .login-action-lostpassword #login,
body.login .login-action-rp #login,
body.login .login-action-resetpass #login {
    width: 430px !important;
}

body.login .login-action-confirm_admin_email form,
body.login .login-action-lostpassword form,
body.login .login-action-rp form,
body.login .login-action-resetpass form {
    color: #d7d7d7 !important;
}

/* --------------------------------------------------------------------------
   Front-end User Registration plugin login page

   The /login/ page uses the User Registration plugin. Keep the plugin login
   flow intact, but present the page like the DKZ wp-login screen.
   -------------------------------------------------------------------------- */

body.dkz-front-login-page {
    min-height: 100vh !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    color: #d7d7d7 !important;
    background:
        linear-gradient(rgba(10, 12, 14, 0.74), rgba(10, 12, 14, 0.86)),
        url("../images/BG-FULL.jpg") center top / cover fixed no-repeat !important;
}

body.dkz-front-login-page .site-header,
body.dkz-front-login-page .site-footer,
body.dkz-front-login-page .dkz-featured-carousel {
    display: none !important;
}

body.dkz-front-login-page .site-main {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 100vw !important;
    max-width: none !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 118px 20px 48px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.dkz-front-login-page article,
body.dkz-front-login-page .hentry,
body.dkz-front-login-page .entry-header,
body.dkz-front-login-page .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #d7d7d7 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.dkz-front-login-page .entry-title {
    display: none !important;
}

body.dkz-front-login-page .entry-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

body.dkz-front-login-page .entry-content::before {
    content: "";
    display: block !important;
    width: 307px !important;
    height: 45px !important;
    margin: 0 auto 24px !important;
    background: url("../images/digital-knightz-title.png") center center / contain no-repeat !important;
}

body.dkz-front-login-page .entry-content > .user-registration,
body.dkz-front-login-page .entry-content .ur-frontend-form.login,
body.dkz-front-login-page .entry-content .ur-form-row,
body.dkz-front-login-page .entry-content .ur-form-grid {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #d7d7d7 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login {
    position: relative !important;
    width: 360px !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 24px 26px 26px !important;
    color: #d7d7d7 !important;
    background:
        linear-gradient(rgba(35, 40, 43, 0.94), rgba(21, 25, 27, 0.97)),
        url("../images/BG-Block.jpg") center center / auto repeat !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 28px rgba(0, 0, 0, 0.72) !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login p,
body.dkz-front-login-page .entry-content .user-registration-form-login .form-row,
body.dkz-front-login-page .entry-content .user-registration-form-login .user-registration-form-row {
    margin: 0 0 18px !important;
    padding: 0 !important;
    color: #d7d7d7 !important;
    background: transparent !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login label {
    display: block !important;
    margin: 0 0 6px !important;
    color: #e6e6e6 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    text-shadow: 0 1px 0 #000000 !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login input[type="text"],
body.dkz-front-login-page .entry-content .user-registration-form-login input[type="password"],
body.dkz-front-login-page .entry-content .user-registration-form-login input[type="email"] {
    width: 100% !important;
    min-height: 40px !important;
    margin: 0 !important;
    padding: 8px 10px !important;
    color: #f2f2f2 !important;
    background: #111517 !important;
    border: 1px solid #3c454a !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 4px rgba(0, 0, 0, 0.82),
        0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login input[type="text"]:focus,
body.dkz-front-login-page .entry-content .user-registration-form-login input[type="password"]:focus,
body.dkz-front-login-page .entry-content .user-registration-form-login input[type="email"]:focus {
    border-color: #b81525 !important;
    outline: none !important;
    box-shadow:
        0 0 0 1px rgba(184, 21, 37, 0.55),
        inset 0 1px 4px rgba(0, 0, 0, 0.82) !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    min-height: 0 !important;
    margin: 0 7px 0 0 !important;
    background: #111517 !important;
    border: 1px solid #3c454a !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login .user-registration-form__label-for-checkbox,
body.dkz-front-login-page .entry-content .user-registration-form-login label[for="rememberme"] {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 !important;
    color: #d7d7d7 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    white-space: nowrap !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login .user-registration-LostPassword {
    display: block !important;
    float: none !important;
    clear: none !important;
    margin: -31px 0 18px !important;
    padding: 0 !important;
    text-align: right !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login .user-registration-LostPassword a,
body.dkz-front-login-page .entry-content .user-registration-form-login a {
    display: inline-block !important;
    color: #d7d7d7 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    text-shadow: 0 1px 0 #000000 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login .user-registration-LostPassword a:hover,
body.dkz-front-login-page .entry-content .user-registration-form-login a:hover {
    color: #ff2638 !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login input[type="submit"],
body.dkz-front-login-page .entry-content .user-registration-form-login button[type="submit"],
body.dkz-front-login-page .entry-content .user-registration-form-login .user-registration-Button {
    float: right !important;
    clear: both !important;
    width: auto !important;
    min-width: 92px !important;
    min-height: 39px !important;
    margin: -2px 0 0 !important;
    padding: 0 20px !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 39px !important;
    letter-spacing: 0.05em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    background: linear-gradient(to bottom, #d52235 0%, #a71525 52%, #75101b 100%) !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.82) !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login input[type="submit"]:hover,
body.dkz-front-login-page .entry-content .user-registration-form-login button[type="submit"]:hover,
body.dkz-front-login-page .entry-content .user-registration-form-login .user-registration-Button:hover {
    background: linear-gradient(to bottom, #ef2b40 0%, #bd182b 52%, #86111d 100%) !important;
}

body.dkz-front-login-page .entry-content .user-registration-form-login::after {
    content: "";
    display: table;
    clear: both;
}

body.dkz-front-login-page .user-registration-error,
body.dkz-front-login-page .user-registration-message,
body.dkz-front-login-page .user-registration-info {
    width: 360px !important;
    margin: 0 auto 16px !important;
    color: #e6e6e6 !important;
    background:
        linear-gradient(rgba(35, 40, 43, 0.96), rgba(21, 25, 27, 0.98)),
        url("../images/BG-Block.jpg") center center / auto repeat !important;
    border: 1px solid #050505 !important;
    border-left: 4px solid #b81525 !important;
    border-radius: 0 !important;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.55) !important;
}

/* --------------------------------------------------------------------------
   Front-end User Registration lost password page

   The /lost-password-2/ page keeps the theme header, ticker, footer, and
   page title. Only the plugin's white reset-password card is skinned. Keep a
   single DKZ panel; do not stack plugin wrapper boxes.
   -------------------------------------------------------------------------- */

body.dkz-front-lost-password-page .entry-content > .user-registration {
    width: min(560px, calc(100vw - 48px)) !important;
    margin: 18px auto 32px !important;
    padding: 0 !important;
    color: #d7d7d7 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.dkz-front-lost-password-page .entry-content .ur-frontend-form {
    width: 100% !important;
    margin: 0 !important;
    padding: 28px 32px 32px !important;
    color: #d7d7d7 !important;
    background:
        linear-gradient(rgba(35, 40, 43, 0.94), rgba(21, 25, 27, 0.97)),
        url("../images/BG-Block.jpg") center center / auto repeat !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 28px rgba(0, 0, 0, 0.58) !important;
}

body.dkz-front-lost-password-page .entry-content form,
body.dkz-front-lost-password-page .entry-content .ur-form-row,
body.dkz-front-lost-password-page .entry-content .ur-form-grid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #d7d7d7 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.dkz-front-lost-password-page .entry-content .user-registration h2,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form h2,
body.dkz-front-lost-password-page .entry-content .user-registration h3,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form h3 {
    margin: 0 0 14px !important;
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    text-align: center !important;
    text-shadow: 0 1px 0 #000000 !important;
}

body.dkz-front-lost-password-page .entry-content .user-registration p,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form p,
body.dkz-front-lost-password-page .entry-content .user-registration div,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form div,
body.dkz-front-lost-password-page .entry-content .user-registration span,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form span {
    color: #d7d7d7 !important;
    background: transparent !important;
}

body.dkz-front-lost-password-page .entry-content .user-registration label,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form label {
    display: block !important;
    margin: 0 0 7px !important;
    color: #e6e6e6 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    text-shadow: 0 1px 0 #000000 !important;
}

body.dkz-front-lost-password-page .entry-content .user-registration input[type="text"],
body.dkz-front-lost-password-page .entry-content .user-registration input[type="email"],
body.dkz-front-lost-password-page .entry-content .ur-frontend-form input[type="text"],
body.dkz-front-lost-password-page .entry-content .ur-frontend-form input[type="email"] {
    width: 100% !important;
    min-height: 40px !important;
    margin: 0 0 16px !important;
    padding: 8px 10px !important;
    color: #f2f2f2 !important;
    background: #111517 !important;
    border: 1px solid #3c454a !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 4px rgba(0, 0, 0, 0.82),
        0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.dkz-front-lost-password-page .entry-content .user-registration input[type="text"]:focus,
body.dkz-front-lost-password-page .entry-content .user-registration input[type="email"]:focus,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form input[type="text"]:focus,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form input[type="email"]:focus {
    border-color: #b81525 !important;
    outline: none !important;
    box-shadow:
        0 0 0 1px rgba(184, 21, 37, 0.55),
        inset 0 1px 4px rgba(0, 0, 0, 0.82) !important;
}

body.dkz-front-lost-password-page .entry-content .user-registration button,
body.dkz-front-lost-password-page .entry-content .user-registration input[type="submit"],
body.dkz-front-lost-password-page .entry-content .ur-frontend-form button,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form input[type="submit"],
body.dkz-front-lost-password-page .entry-content .user-registration-Button {
    width: 100% !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 22px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 0.03em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    background: linear-gradient(to bottom, #d52235 0%, #a71525 52%, #75101b 100%) !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.82) !important;
}

body.dkz-front-lost-password-page .entry-content .user-registration button:hover,
body.dkz-front-lost-password-page .entry-content .user-registration input[type="submit"]:hover,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form button:hover,
body.dkz-front-lost-password-page .entry-content .ur-frontend-form input[type="submit"]:hover {
    background: linear-gradient(to bottom, #ef2b40 0%, #bd182b 52%, #86111d 100%) !important;
}

@media (max-width: 640px) {
    body.dkz-front-lost-password-page .entry-content > .user-registration {
        width: calc(100vw - 32px) !important;
    }

    body.dkz-front-lost-password-page .entry-content .ur-frontend-form {
        padding: 22px 18px 24px !important;
    }
}

@media (max-width: 480px) {
    body.dkz-front-login-page .site-main {
        padding-top: 72px !important;
    }

    body.dkz-front-login-page .entry-content::before {
        width: 260px !important;
        height: 39px !important;
    }

    body.dkz-front-login-page .entry-content .user-registration-form-login,
    body.dkz-front-login-page .user-registration-error,
    body.dkz-front-login-page .user-registration-message,
    body.dkz-front-login-page .user-registration-info {
        width: min(360px, calc(100vw - 36px)) !important;
    }
}
