/* Wrapper: keep it slim so it blends nicely with WoodMart & WooCommerce */
.plc-wrapper {
    max-width: 480px;
    margin: 0 auto 40px;
}

.plc-inner {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Tabs */
.plc-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.plc-tab {
    flex: 1;
    padding: 10px 14px;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f7f7f7;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.plc-tab:hover {
    background-color: #f0f0f0;
}

.plc-tab.active {
    background-color: #222;
    color: #fff;
    border-color: #222;
}

/* Content */
.plc-content {
    display: none;
}

.plc-content.active {
    display: block;
}

/* Forms */
.plc-form .form-row {
    margin-bottom: 18px;
}

.plc-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
}

.plc-form .input-text {
    width: 100%;
}

/* Captcha */
.plc-captcha-row {
    margin-top: 10px;
}

.plc-captcha-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plc-captcha-box {
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #f5f5f5;
    font-weight: 600;
    font-size: 14px;
}

/* Button */
.plc-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 30px;
}

/* Helper text / links */
.plc-helper {
    margin-top: 18px;
    font-size: 13px;
    color: #555;
}

.plc-helper-text {
    margin-bottom: 4px;
}

.plc-helper-links a {
    font-weight: 600;
    text-decoration: none;
}

.plc-helper-links a:hover {
    text-decoration: underline;
}

.plc-helper-separator {
    margin: 0 6px;
    opacity: 0.7;
}

/* --- Override to better match Kadence & make tabs distinct --- */

/* Base tabs: pill style, readable text */
.plc-tabs .plc-tab {
    background-color: #ffffff;
    color: #111827;
    border-radius: 9999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

/* Hover state for inactive tabs */
.plc-tabs .plc-tab:hover:not(.active) {
    background-color: #f1f5f9;
}

/* Active LOGIN tab */
.plc-tabs .plc-tab[data-tab="login"].active {
    background-color: #111827;
    color: #ffffff;
    border-color: #111827;
}

/* Active REGISTER tab */
.plc-tabs .plc-tab[data-tab="register"].active {
    background-color: #2563eb; /* blue accent similar to Kadence */
    color: #ffffff;
    border-color: #2563eb;
}
