/* Home2 Login Page — mockup layout */

body.home2-auth-page {
    background: #050608 !important;
}

body.home2-auth-page .home-body-bg,
body.home2-auth-page .special-container,
body.home2-auth-page main {
    background: transparent !important;
}

.home2-auth {
    position: relative;
    padding: 0 0 40px;
}

.home2-auth__page-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(255, 140, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 15%, rgba(255, 170, 0, 0.06) 0%, transparent 55%),
        #050608;
}

.home2-auth__wrap {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 14px;
}

.home2-auth__crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(8, 9, 13, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
}

.home2-auth__crumbs-home svg {
    width: 15px;
    height: 15px;
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

.home2-auth__crumbs-link {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
}

.home2-auth__crumbs-link:hover {
    color: #ffb020;
}

.home2-auth__crumbs-sep {
    color: rgba(255, 255, 255, 0.2);
}

.home2-auth__crumbs-current {
    color: #ffb020;
}

.home2-auth__alert {
    margin: 0 0 14px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.home2-auth__alert--danger {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.35);
    color: #ffb4bc;
}

.home2-auth__alert--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
}

.home2-auth__alert--warning {
    background: rgba(255, 176, 32, 0.12);
    border: 1px solid rgba(255, 176, 32, 0.35);
    color: #ffd88a;
}

.home2-auth__form-hint {
    margin: -8px 0 16px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.home2-auth__field-error {
    margin: -6px 0 4px;
    font-size: 12px;
    line-height: 1.4;
    color: #ffb4bc;
}

.home2-auth__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    grid-template-rows: 1fr;
    align-items: stretch;
    min-height: 535px;
    height: 535px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 0 1px rgba(255, 153, 0, 0.05),
        0 30px 80px rgba(0, 0, 0, 0.55);
}

@media (min-width: 992px) {
    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__wrap {
        width: min(1240px, calc(100% - 32px));
    }

    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__card {
        grid-template-columns: minmax(400px, 1.15fr) minmax(360px, 0.85fr);
        min-height: 560px;
        height: 560px;
    }

    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__hero {
        height: 100%;
        min-height: 0;
    }

    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__hero-bg {
        object-position: 38% center;
    }

    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__hero-shade {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 34%, transparent 52%),
            linear-gradient(90deg, transparent 58%, rgba(10, 11, 15, 0.72) 78%, #0a0b0f 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.06) 36%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0.78) 100%);
    }

    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__hero-top {
        max-width: 92%;
        padding-right: 24px;
    }

    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__desc {
        max-width: 100%;
    }

    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__form-side {
        align-items: stretch;
        justify-content: center;
        min-height: 0;
        height: 100%;
        padding: 22px 20px;
    }

    body.home2-auth-page:not(.home2-auth-page--centered) .home2-auth__form-box {
        max-width: none;
        width: 100%;
        margin-top: 0;
        padding: 28px 22px 22px;
    }
}

.home2-auth__hero {
    position: relative;
    height: 540px;
    min-height: 540px;
    overflow: hidden;
    background-color: #0a0b0f;
}

.home2-auth__hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    user-select: none;
}

.home2-auth__hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 38%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.72) 100%);
}

.home2-auth__hero-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 36px 32px 0;
    box-sizing: border-box;
}

.home2-auth__title {
    margin: 0 0 16px;
    padding: 0;
    line-height: 1.05;
    font-style: normal;
}

.home2-auth__title span {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

.home2-auth__title em {
    display: block;
    margin-top: 2px;
    font-style: normal;
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    font-weight: 900;
    color: #ffb020;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

.home2-auth__title::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    margin-top: 14px;
    border-radius: 999px;
    background: #ffb020;
}

.home2-auth__desc {
    margin: 0 0 10px;
    max-width: 350px;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.home2-auth__desc--accent strong {
    color: #ffb020;
    font-weight: 800;
}

.home2-auth__features {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: 0 32px 28px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home2-auth__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.home2-auth__feat-ico {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #ffb020;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 176, 32, 0.25);
    backdrop-filter: blur(4px);
}

.home2-auth__feat-ico svg {
    width: 16px;
    height: 16px;
}

.home2-auth__feat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.home2-auth__feat-text b {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.home2-auth__feat-text small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.4;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.home2-auth__form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 28px 24px;
    box-sizing: border-box;
    background: #0a0b0f;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.home2-auth__form-box {
    margin-top: -3em;
    position: relative;
    width: 100%;
    max-width: 340px;
    padding: 30px 24px 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #0e1018 0%, #090a0f 100%);
    border: 1px solid rgba(255, 176, 32, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home2-auth__form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #ffb020, transparent);
    box-shadow: 0 0 16px rgba(255, 153, 0, 0.4);
}

.home2-auth__form-title {
    margin: 0 0 22px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.home2-auth__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home2-auth__input-wrap {
    position: relative;
    display: block;
}

.home2-auth__input-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: rgba(255, 255, 255, 0.55);
    pointer-events: none;
    z-index: 2;
}

.home2-auth__input-ico svg {
    width: 17px;
    height: 17px;
    display: block;
}

body.home2-auth-page .home2-auth__input,
body.home2-account-page .home2-auth__input {
    display: block;
    width: 100%;
    height: 46px;
    padding: 0 40px 0 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #0c0e14 !important;
    color: #ffffff !important;
    font-size: 18px;
    box-shadow: none !important;
    transition: border-color 0.2s ease;
}

body.home2-auth-page .home2-auth__input::placeholder,
body.home2-account-page .home2-auth__input::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
}

body.home2-auth-page .home2-auth__input:focus,
body.home2-account-page .home2-auth__input:focus {
    outline: none !important;
    border-color: rgba(255, 176, 32, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.08) !important;
}

body.home2-auth-page .home2-auth__input:-webkit-autofill,
body.home2-auth-page .home2-auth__input:-webkit-autofill:hover,
body.home2-auth-page .home2-auth__input:-webkit-autofill:focus,
body.home2-account-page .home2-auth__input:-webkit-autofill,
body.home2-account-page .home2-auth__input:-webkit-autofill:hover,
body.home2-account-page .home2-auth__input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #0c0e14 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.home2-auth__pass-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.38);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}

.home2-auth__pass-toggle:hover {
    color: #ffb020;
}

.home2-auth__eye-on,
.home2-auth__eye-off {
    width: 17px;
    height: 17px;
}

.home2-auth__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 2px;
}

.home2-auth__remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.home2-auth__remember input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.home2-auth__remember-box {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #0c0e14;
    position: relative;
    flex-shrink: 0;
}

.home2-auth__remember input:checked + .home2-auth__remember-box {
    background: #ffb020;
    border-color: #ffb020;
}

.home2-auth__remember input:checked + .home2-auth__remember-box::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.home2-auth__forgot {
    color: #ffb020;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.home2-auth__forgot:hover {
    color: #ffd054;
    text-decoration: underline;
}

.home2-auth__captcha {
    display: flex;
    justify-content: center;
    transform: scale(0.9);
    transform-origin: center top;
    margin: 0 0 -2px;
    min-height: 0;
    pointer-events: none;
}

body.home2-auth-page .home2-auth__submit,
body.home2-account-page .home2-auth__submit {
    width: 100%;
    height: 48px;
    margin-top: 4px;
    border: 1px solid rgba(255, 193, 7, 0.45) !important;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffc830 0%, #ff9900 100%) !important;
    color: #111111 !important;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(255, 140, 0, 0.28);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.home2-auth-page .home2-auth__submit-text,
body.home2-account-page .home2-auth__submit-text {
    position: relative;
    z-index: 1;
}

body.home2-auth-page .home2-auth__submit:hover,
body.home2-account-page .home2-auth__submit:hover {
    background: linear-gradient(180deg, #ffc107 0%, #ffb020 100%) !important;
    border-color: rgba(255, 210, 64, 0.65) !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.32);
}

.home2-auth__sep {
    position: relative;
    margin: 18px 0 14px;
    text-align: center;
}

.home2-auth__sep::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.home2-auth__sep span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 10px;
    background: #0e1018;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    font-weight: 600;
}

.home2-auth__register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(255, 176, 32, 0.5);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.home2-auth__register svg {
    width: 17px;
    height: 17px;
    color: #ffb020;
}

.home2-auth__register strong {
    color: #ffb020;
    font-weight: 800;
}

.home2-auth__register:hover {
    background: rgba(255, 176, 32, 0.07);
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .home2-auth__card {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .home2-auth__hero {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        order: 2;
        height: auto;
        min-height: 520px;
    }

    .home2-auth__hero-top,
    .home2-auth__features {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .home2-auth__hero-top {
        padding: 28px 20px 0;
        flex-shrink: 0;
    }

    .home2-auth__features {
        margin-top: auto;
        padding: 24px 20px 28px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home2-auth__form-side {
        order: 1;
        min-height: 0;
        height: auto;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 575px) {
    .home2-auth__wrap {
        width: min(100%, calc(100% - 16px));
    }

    .home2-auth__hero {
        min-height: 480px;
    }

    .home2-auth__hero-top {
        padding: 22px 16px 0;
    }

    .home2-auth__title span {
        font-size: 2rem;
    }

    .home2-auth__title em {
        font-size: 2.15rem;
    }

    .home2-auth__desc {
        max-width: none;
        font-size: 15px;
    }

    .home2-auth__features {
        padding: 20px 16px 24px;
    }

    .home2-auth__feat-text b {
        font-size: 13px;
    }

    .home2-auth__feat-text small {
        font-size: 12px;
    }

    .home2-auth__form-side {
        margin-top: 3em;
        padding: 20px 16px;
    }

    .home2-auth__form-box {
        max-width: none;
    }

    .home2-auth__row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Şifremi unuttum — ortalanmış form (hero yok) */

.home2-auth--centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 280px);
    padding: 32px 0 60px;
}

.home2-auth__wrap--centered {
    width: min(440px, calc(100% - 32px));
    margin: 0 auto;
}

.home2-auth__card--centered {
    display: block;
    min-height: 0;
    height: auto;
    margin-top: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.home2-auth__card--centered .home2-auth__form-box {
    margin-top: 0;
    width: 100%;
    max-width: none;
}

@media (max-width: 575px) {
    .home2-auth__wrap--centered {
        width: min(100%, calc(100% - 16px));
    }
}

/* -------------------------------------------------------------------------- */
/* Login gate — korumalı alanlar (destek vb.)                                 */
/* -------------------------------------------------------------------------- */

body.home2-gate-page {
    background: #050608 !important;
    color: rgba(255, 255, 255, 0.78);
}

body.home2-gate-page .home-body-bg,
body.home2-gate-page .special-container,
body.home2-gate-page main {
    background: transparent !important;
}

.home2-gate-page {
    position: relative;
    padding: 0 0 48px;
}

.home2-gate-page__page-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 18% 22%, rgba(255, 140, 0, 0.1) 0%, transparent 58%),
        radial-gradient(ellipse 40% 30% at 82% 10%, rgba(255, 170, 0, 0.05) 0%, transparent 55%),
        #050608;
}

.home2-gate-page__wrap {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 14px;
}

.home2-gate-page__crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: rgba(8, 9, 13, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
}

.home2-gate-page__crumbs-home svg {
    width: 15px;
    height: 15px;
    display: block;
    color: #ffb020;
}

.home2-gate-page__crumbs-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    text-transform: capitalize;
}

.home2-gate-page__crumbs-link:hover {
    color: #ffb020;
}

.home2-gate-page__crumbs-sep {
    color: rgba(255, 176, 32, 0.55);
    font-size: 12px;
}

.home2-gate-page__crumbs-current {
    color: #ffb020;
    text-transform: capitalize;
}

.home2-gate__card {
    padding: 36px 32px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 176, 32, 0.12);
    background: linear-gradient(180deg, #0e1018 0%, #090a0f 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 20px 50px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.home2-gate__card::before {
    content: '';
    display: block;
    width: min(220px, 60%);
    height: 2px;
    margin: -36px auto 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #ffb020, transparent);
    box-shadow: 0 0 16px rgba(255, 153, 0, 0.35);
}

.home2-gate__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: rgba(255, 176, 32, 0.1);
    border: 1px solid rgba(255, 176, 32, 0.22);
    color: #ffb020;
}

.home2-gate__icon svg {
    width: 28px;
    height: 28px;
}

.home2-gate__title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
}

.home2-gate__message {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.home2-gate__desc {
    margin: 0 auto 24px;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.52);
}

.home2-gate__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.home2-gate__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home2-gate__btn--primary {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 210, 64, 0.45);
    background: linear-gradient(180deg, #ffc107 0%, #ffb020 100%);
    color: #151515;
    box-shadow: 0 8px 18px rgba(255, 176, 32, 0.24);
}

.home2-gate__btn--primary:hover {
    color: #151515;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(255, 176, 32, 0.32);
}

.home2-gate__btn-text {
    position: relative;
    z-index: 1;
}

.home2-gate__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
}

.home2-gate__btn--ghost:hover {
    border-color: rgba(255, 176, 32, 0.35);
    background: rgba(255, 176, 32, 0.08);
    color: #ffffff;
    text-decoration: none;
}

.home2-gate__footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.home2-gate__footer a {
    margin-left: 6px;
    color: #ffb020;
    font-weight: 700;
    text-decoration: none;
}

.home2-gate__footer a:hover {
    color: #ffd54a;
    text-decoration: underline;
}

/* main.css / home2-page link stillerini geçersiz kıl */
body.home2-gate-page .home2-gate__btn--primary,
body.home2-gate-page .home2-gate__btn--primary:hover,
body.home2-gate-page .home2-gate__btn--primary:focus {
    color: #151515 !important;
    text-decoration: none !important;
}

body.home2-gate-page .home2-gate__btn--ghost,
body.home2-gate-page .home2-gate__btn--ghost:focus {
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
}

body.home2-gate-page .home2-gate__btn--ghost:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

body.home2-gate-page .home2-gate__title {
    color: #ffffff;
}

body.home2-gate-page .home2-gate__message {
    color: rgba(255, 255, 255, 0.9);
}

body.home2-gate-page .home2-gate__desc {
    color: rgba(255, 255, 255, 0.62);
}

body.home2-gate-page .home2-gate__footer {
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
    .home2-gate-page__wrap {
        width: min(100%, calc(100% - 16px));
    }

    .home2-gate__card {
        padding: 28px 20px 24px;
    }

    .home2-gate__card::before {
        margin-top: -28px;
    }

    .home2-gate__actions {
        flex-direction: column;
        width: 100%;
    }

    .home2-gate__btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------------------- */
/* Kayıt ol — ortalanmış form                                                  */
/* -------------------------------------------------------------------------- */

.home2-auth--register {
    padding-bottom: 48px;
}

.home2-auth__wrap--register {
    width: min(520px, calc(100% - 32px));
}

.home2-auth__card--register .home2-auth__form-box {
    margin-top: 0;
}

.home2-auth__register-head {
    text-align: center;
    margin-bottom: 6px;
}

.home2-auth__register-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 176, 32, 0.28);
    background: rgba(255, 176, 32, 0.1);
    color: #ffb020;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home2-auth__card--register .home2-auth__form-title {
    margin-bottom: 8px;
}

.home2-auth__form-subtitle {
    margin: 0 0 18px;
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.48);
}

.home2-auth__field-hint {
    margin: -4px 0 8px;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
}

.home2-auth__form--register .home2-auth__field-hint {
    margin-top: -8px;
}

.home2-auth__field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home2-auth__form--register {
    gap: 12px;
}

.home2-auth__card--register .home2-auth__alert {
    margin-bottom: 12px;
}

.home2-auth__checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.home2-auth__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.home2-auth__check input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.home2-auth__check-box {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #0c0e14;
    position: relative;
}

.home2-auth__check input:checked + .home2-auth__check-box {
    background: #ffb020;
    border-color: #ffb020;
}

.home2-auth__check input:checked + .home2-auth__check-box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.home2-auth__check-text {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.home2-auth__check-text a {
    color: #ffb020;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home2-auth__check-text a:hover {
    color: #ffd054;
}

.home2-auth__legal {
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
}

.home2-auth__legal a {
    color: rgba(255, 176, 32, 0.85);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home2-auth__legal a:hover {
    color: #ffb020;
}

@media (max-width: 575px) {
    .home2-auth__wrap--register {
        width: min(100%, calc(100% - 16px));
    }

    .home2-auth__field-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
/* Aktivasyon — ortalanmış kod girişi                                          */
/* -------------------------------------------------------------------------- */

.home2-auth__wrap--activation {
    width: min(460px, calc(100% - 32px));
}

.home2-auth__form--activation {
    gap: 14px;
}

.home2-auth__input-wrap--code {
    margin-top: 4px;
}

body.home2-auth-page .home2-auth__input--code,
body.home2-account-page .home2-auth__input--code {
    text-align: center;
    letter-spacing: 0.28em;
    font-size: 22px !important;
    font-weight: 800 !important;
    padding-right: 16px !important;
}

body.home2-auth-page .home2-auth__input--code::placeholder,
body.home2-account-page .home2-auth__input--code::placeholder {
    letter-spacing: 0.12em;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.home2-auth__resend-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.home2-auth__resend-note {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.48);
}

.home2-auth__resend-note--muted {
    margin-bottom: 0;
}

.home2-auth__resend-form {
    margin: 0;
}

.home2-auth__resend-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.home2-auth__resend-btn:hover:not(:disabled) {
    border-color: rgba(255, 176, 32, 0.35);
    background: rgba(255, 176, 32, 0.08);
    color: #ffffff;
}

.home2-auth__resend-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.home2-auth__resend-countdown {
    margin: 10px 0 0;
    font-size: 12px;
    color: rgba(255, 176, 32, 0.75);
}

.home2-auth__card--activation .home2-auth__form-hint strong {
    color: #ffb020;
    font-weight: 800;
}

@media (max-width: 575px) {
    .home2-auth__wrap--activation {
        width: min(100%, calc(100% - 16px));
    }
}
