/* ==========================================
   Concurrent Login — Interstitial Overlay
   Dark theme matching login.css
   Uses brand tokens from BrandCss
   ========================================== */

/* Hide the normal login form + errors when interstitial is showing */
body.login.wt-cl-interstitial #loginform,
body.login.wt-cl-interstitial #login_error,
body.login.wt-cl-interstitial .message,
body.login.wt-cl-interstitial p#nav,
body.login.wt-cl-interstitial p#backtoblog {
    display: none !important;
}

/* Interstitial card — matches login form card style */
.wt-cl-card {
    background: #141414 !important;
    border: 1px solid #333333 !important;
    border-radius: var(--webtutors-radius, 18px) !important;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 16px 44px rgba(0,0,0,0.55) !important;
    padding: 32px 28px 28px !important;
    margin: 0 auto 24px !important;
    text-align: center;
}

/* Warning icon */
.wt-cl-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    background: rgba(223,32,39,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wt-cl-icon svg {
    width: 26px;
    height: 26px;
    color: var(--webtutors-btn, #DF2027);
}

/* Title */
.wt-cl-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.4;
}

/* Message */
.wt-cl-message {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    margin: 0 0 24px;
}

/* Button row */
.wt-cl-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wt-cl-actions form {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Continue Here — primary brand button */
.wt-cl-btn-continue {
    display: block;
    width: 100%;
    padding: 12px 18px;
    background: var(--webtutors-btn, #DF2027) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: calc(var(--webtutors-radius, 12px) * 0.67) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    cursor: pointer !important;
    text-shadow: none !important;
    box-shadow: 0 4px 14px rgba(223,32,39,0.35) !important;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
}

.wt-cl-btn-continue:hover {
    background: var(--webtutors-btn-hover, #b3191f) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(223,32,39,0.45) !important;
}

/* Cancel — subtle ghost button */
.wt-cl-btn-cancel {
    display: block;
    width: 100%;
    padding: 10px 18px;
    background: transparent !important;
    color: rgba(255,255,255,0.65) !important;
    border: 1px solid #333333 !important;
    border-radius: calc(var(--webtutors-radius, 12px) * 0.67) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: border-color .15s ease, color .15s ease !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
}

.wt-cl-btn-cancel:hover {
    color: #ffffff !important;
    border-color: #555555 !important;
}

/* Mobile */
@media (max-width: 480px) {
    .wt-cl-card {
        padding: 24px 20px 22px !important;
    }

    .wt-cl-title {
        font-size: 15px;
    }

    .wt-cl-message {
        font-size: 13px;
    }
}
