/* ============================================================
   LEZZET10DA — REGISTER PAGE
   Namespace: lz10reg-
   ============================================================ */
.lz10reg-root,
.lz10reg-root *,
.lz10reg-root *::before,
.lz10reg-root *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lz10reg-root {
    --font: var(--panel-global-font, "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    --font-ed: var(--panel-baslik-font, var(--panel-global-font, "Playfair Display", Georgia, serif));
    --white: #ffffff;
    --cream: #fdfcf9;
    --sand: #f5f3ee;
    --sand-d: #ebe8e1;
    --stone: #d4d0c8;
    --text: #1a1a1a;
    --text-2: #4a4640;
    --text-3: #8a857c;
    --green: #4a6b2a;
    --green-h: #3b5621;
    --green-bg: rgba(74, 107, 42, 0.06);
    --sp-1: 8px;
    --sp-2: 13px;
    --sp-3: 21px;
    --sp-4: 34px;
    --sp-5: 55px;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 18px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 0.25s;
    font-family: var(--font);
    color: var(--text);
    background: var(--panel-uye-altsayfa-bg, #FDFCF9);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding: var(--sp-4) 0;
}

.lz10reg-root .page-banner-main {
    display: none;
}

.lz10reg-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-3);
    width: 100%;
}

.lz10reg-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--sand-d);
    box-shadow: 0 20px 80px rgba(26, 26, 24, 0.06);
}

.lz10reg-form-side {
    background: var(--panel-uye-detay-bg, #FFFFFF);
    font-family: var(--panel-uye-font, "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    padding: var(--sp-5) var(--sp-5);
    display: flex;
    flex-direction: column;
}

.lz10reg-logo {
    display: inline-block;
    margin-bottom: var(--sp-4);
}

.lz10reg-logo img {
    height: 32px;
    width: auto;
}

.lz10reg-form-header {
    margin-bottom: var(--sp-4);
}

.lz10reg-title {
    font-family: var(--font-ed);
    font-weight: 600;
    font-size: clamp(26px, 3vw, 34px);
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: var(--sp-1);
}

.lz10reg-subtitle {
    font-size: 15px;
    color: var(--text-3);
    line-height: 1.5;
}

.lz10reg-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    flex: 1;
}

/* Mevcut üyelik türü (basit_form kapalı) blokları */
.lz10reg-form .register-page-uyelik-tipi-main {
    border: 1px solid var(--sand-d);
    border-radius: var(--r-md);
    padding: var(--sp-2) var(--sp-3);
    background: var(--sand);
}

.lz10reg-form .register-page-uyelik-tipi-h {
    margin-top: -28px;
    margin-bottom: 12px;
}

.lz10reg-form .register-page-uyelik-tipi-h-in {
    display: inline-block;
    background: var(--white);
    padding: 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-2);
}

.lz10reg-form .register-page-uyelik-tipi {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.lz10reg-form .rdio label {
    font-size: 14px;
    color: var(--text-2);
    cursor: pointer;
}

.lz10reg-kurumsal-fields {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.lz10reg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
}

.lz10reg-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lz10reg-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
}

.lz10reg-label-req::after {
    content: " *";
    color: var(--green);
}

.lz10reg-input {
    height: 48px;
    padding: 0 16px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    background: var(--sand);
    border: 1.5px solid transparent;
    border-radius: var(--r-md);
    outline: none;
    transition:
        border-color var(--dur) var(--ease),
        background var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
    width: 100%;
}

.lz10reg-input::placeholder {
    color: var(--stone);
}

.lz10reg-input:hover {
    border-color: var(--sand-d);
}

.lz10reg-input:focus {
    background: var(--white);
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(74, 107, 42, 0.08);
}

.lz10reg-input-icon {
    position: relative;
}

.lz10reg-input-icon > svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-3);
    pointer-events: none;
    z-index: 1;
}

.lz10reg-input--icon {
    padding-left: 42px;
}

.lz10reg-pass-wrap {
    position: relative;
}

.lz10reg-input--pass {
    padding-right: 46px;
}

.lz10reg-pass-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text-3);
    cursor: pointer;
    border-radius: var(--r-sm);
    transition: color var(--dur) var(--ease);
}

.lz10reg-pass-toggle:hover {
    color: var(--green);
}

.lz10reg-pass-toggle svg {
    width: 18px;
    height: 18px;
}

.lz10reg-agreements {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    padding-top: var(--sp-1);
}

.lz10reg-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.4;
}

.lz10reg-check__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.lz10reg-check__box {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--sand-d);
    border-radius: 5px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--dur) var(--ease);
    background: var(--white);
    margin-top: 1px;
}

.lz10reg-check__input:checked + .lz10reg-check__box {
    background: var(--green);
    border-color: var(--green);
}

.lz10reg-check__input:checked + .lz10reg-check__box::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.lz10reg-check__input:focus-visible + .lz10reg-check__box {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.lz10reg-check__link {
    color: var(--green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.lz10reg-check__link:hover {
    color: var(--green-h);
}

.lz10reg-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
    margin-top: var(--sp-1);
}

.lz10reg-submit svg {
    width: 18px;
    height: 18px;
}

.lz10reg-submit:hover {
    background: var(--green-h);
    box-shadow: 0 6px 24px rgba(74, 107, 42, 0.25);
}

.lz10reg-submit:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.lz10reg-login-link {
    text-align: center;
    font-size: 14px;
    color: var(--text-3);
    margin-top: var(--sp-2);
}

.lz10reg-login-link a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.lz10reg-login-link a:hover {
    color: var(--green-h);
    text-decoration: underline;
}

.lz10reg-benefits-side {
    background: var(--sand);
    border-left: 1px solid var(--sand-d);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-5);
}

.lz10reg-benefits {
    max-width: 420px;
    width: 100%;
}

.lz10reg-benefits__cms {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: var(--sp-4);
}

.lz10reg-benefits__cms img {
    max-width: 100%;
    height: auto;
}

.lz10reg-benefits__header {
    margin-bottom: var(--sp-5);
}

.lz10reg-benefits__eyebrow {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: var(--sp-2);
}

.lz10reg-benefits__title {
    font-family: var(--font-ed);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

.lz10reg-benefits__list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.lz10reg-benefit {
    display: flex;
    gap: var(--sp-2);
    align-items: flex-start;
}

.lz10reg-benefit__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--sand-d);
    border-radius: var(--r-md);
    flex-shrink: 0;
    color: var(--green);
    transition:
        border-color var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
}

.lz10reg-benefit:hover .lz10reg-benefit__icon {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(74, 107, 42, 0.08);
}

.lz10reg-benefit__icon svg {
    width: 20px;
    height: 20px;
}

.lz10reg-benefit__text h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.3;
}

.lz10reg-benefit__text p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.5;
}

.lz10reg-benefits__quote {
    margin-top: var(--sp-5);
    padding: var(--sp-3);
    background: var(--white);
    border: 1px solid var(--sand-d);
    border-radius: var(--r-lg);
    position: relative;
}

.lz10reg-benefits__quote svg {
    position: absolute;
    top: var(--sp-2);
    left: var(--sp-2);
    width: 32px;
    height: 32px;
    color: var(--green);
}

.lz10reg-benefits__quote p {
    font-family: var(--font-ed);
    font-style: italic;
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.6;
    padding-left: var(--sp-4);
}

@media (max-width: 1024px) {
    .lz10reg-form-side {
        padding: var(--sp-4) var(--sp-4);
    }

    .lz10reg-benefits-side {
        padding: var(--sp-4);
    }
}

@media (max-width: 768px) {
    .lz10reg-root {
        padding: var(--sp-3) 0 var(--sp-4);
    }

    .lz10reg-shell {
        padding: 0 var(--sp-2);
    }

    .lz10reg-layout {
        grid-template-columns: 1fr;
        border-radius: var(--r-lg);
        min-height: auto;
    }

    .lz10reg-form-side {
        padding: var(--sp-4) var(--sp-3);
        order: 1;
    }

    .lz10reg-benefits-side {
        border-left: none;
        border-top: 1px solid var(--sand-d);
        order: 2;
        padding: var(--sp-4) var(--sp-3);
    }

    .lz10reg-row {
        grid-template-columns: 1fr;
        gap: var(--sp-2);
    }

    .lz10reg-title {
        font-size: 24px;
    }

    .lz10reg-input {
        height: 46px;
    }

    .lz10reg-submit {
        height: 50px;
    }

    .lz10reg-benefits__title {
        font-size: 26px;
    }

    .lz10reg-benefit__icon {
        width: 38px;
        height: 38px;
    }

    .lz10reg-benefit__icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 380px) {
    .lz10reg-form-side {
        padding: var(--sp-3) var(--sp-2);
    }

    .lz10reg-benefits-side {
        padding: var(--sp-3) var(--sp-2);
    }

    .lz10reg-check {
        font-size: 12px;
    }

    .lz10reg-submit {
        height: 48px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lz10reg-root * {
        transition-duration: 0s !important;
    }
}
