/*
YOPT_DEV_STAMP_START
{
  "project": "vereinssuite",
  "plugin": "yop-vereinssuite",
  "legacy_project_name": "vereinsmanager",
  "exclusive_platform": "vereinssuite.de",
  "deployment_model": "exclusive_saas_cloud",
  "module": "website_access",
  "feature": "auth_landingpage",
  "sub_feature": "tabbed_registration_login_design",
  "file": "assets/css/yop-vs-auth-landing.css",
  "file_role": "frontend_css",
  "object_role": "auth_landingpage_design",
  "development_status": "in_progress",
  "development_phase": 13,
  "version": "0.1.0-beta.1",
  "last_updated": "2026-06-17",
  "last_change": "Tab-Landingpage für Registrierung und Login nach Vereinssuite CI erstellt.",
  "area": "asset",
  "review_note": "Nur Theme-Design. Plugin-Shortcode-Formulare werden eingebettet und visuell angepasst.",
  "supports_saas": true,
  "supports_self_hosted": false,
  "supports_gutenberg": true,
  "supports_elementor": true
}
YOPT_DEV_STAMP_END
*/

:root {
    --yop-vs-auth-orange: #ff5a00;
    --yop-vs-auth-orange-dark: #e84f00;
    --yop-vs-auth-orange-soft: #fff1e8;
    --yop-vs-auth-orange-ultra: #fff8f3;
    --yop-vs-auth-black: #101010;
    --yop-vs-auth-text: #343434;
    --yop-vs-auth-muted: #6d6d6d;
    --yop-vs-auth-border: #e9e9e9;
    --yop-vs-auth-white: #ffffff;
    --yop-vs-auth-shadow: 0 18px 48px rgba(16, 16, 16, 0.08);
    --yop-vs-auth-font: Inter, Manrope, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body.yop-vs-auth-landing-page .yop-vs-site-header,
body.yop-vs-auth-flow-page .yop-vs-site-header {
    position: relative;
    z-index: 5;
}

.yop-vs-auth-landing,
.yop-vs-auth-flow {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 90, 0, 0.12), transparent 24%),
        radial-gradient(circle at 92% 4%, rgba(255, 90, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    color: var(--yop-vs-auth-text);
    font-family: var(--yop-vs-auth-font);
}

.yop-vs-auth-landing *,
.yop-vs-auth-flow * {
    box-sizing: border-box;
}

.yop-vs-auth-landing__topbar {
    border-bottom: 1px solid var(--yop-vs-auth-border);
    background: rgba(255, 255, 255, 0.92);
}

.yop-vs-auth-landing__topbar-inner {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 10px 0;
}

.yop-vs-auth-landing__topbar-text {
    margin: 0;
    color: var(--yop-vs-auth-muted);
    font-size: 14px;
}

.yop-vs-auth-landing__topbar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    border: 1.5px solid var(--yop-vs-auth-orange);
    border-radius: 999px;
    color: var(--yop-vs-auth-orange) !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition: background-color 180ms ease, color 180ms ease;
}

.yop-vs-auth-landing__topbar-link:hover,
.yop-vs-auth-landing__topbar-link:focus-visible {
    background: var(--yop-vs-auth-orange-soft);
}

.yop-vs-auth-landing__container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 72px;
}

.yop-vs-auth-landing__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.88fr);
    gap: 48px;
    align-items: start;
}

.yop-vs-auth-landing__eyebrow,
.yop-vs-auth-flow__eyebrow {
    display: inline-flex;
    margin: 0 0 16px;
    color: var(--yop-vs-auth-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.yop-vs-auth-landing__title {
    margin: 0;
    color: var(--yop-vs-auth-black);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.yop-vs-auth-landing__title span {
    color: var(--yop-vs-auth-orange);
}

.yop-vs-auth-landing__lead {
    margin: 18px 0 0;
    max-width: 620px;
    color: var(--yop-vs-auth-muted);
    font-size: 17px;
    line-height: 1.7;
}

.yop-vs-auth-landing__feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.yop-vs-auth-landing__feature {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--yop-vs-auth-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.yop-vs-auth-landing__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--yop-vs-auth-orange-soft);
    color: var(--yop-vs-auth-orange);
    font-size: 18px;
}

.yop-vs-auth-landing__feature h3 {
    margin: 0;
    color: var(--yop-vs-auth-black);
    font-size: 15px;
    font-weight: 800;
}

.yop-vs-auth-landing__feature p {
    margin: 6px 0 0;
    color: var(--yop-vs-auth-muted);
    font-size: 13px;
    line-height: 1.55;
}

.yop-vs-auth-landing__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.yop-vs-auth-landing__stat {
    padding: 14px 12px;
    border-radius: 16px;
    background: var(--yop-vs-auth-orange-ultra);
    border: 1px solid #ffe2d2;
    text-align: center;
}

.yop-vs-auth-landing__stat strong {
    display: block;
    color: var(--yop-vs-auth-orange);
    font-size: 18px;
    font-weight: 900;
}

.yop-vs-auth-landing__stat span {
    display: block;
    margin-top: 4px;
    color: var(--yop-vs-auth-muted);
    font-size: 11px;
    line-height: 1.4;
}

.yop-vs-auth-landing__trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--yop-vs-auth-border);
    background: #fff;
}

.yop-vs-auth-landing__trust-badge strong {
    display: block;
    color: var(--yop-vs-auth-black);
    font-size: 14px;
}

.yop-vs-auth-landing__trust-badge span {
    display: block;
    margin-top: 2px;
    color: var(--yop-vs-auth-muted);
    font-size: 12px;
}

.yop-vs-auth-landing__panel {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--yop-vs-auth-border);
    background: var(--yop-vs-auth-white);
    box-shadow: var(--yop-vs-auth-shadow);
}

.yop-vs-auth-landing__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
    padding: 6px;
    border-radius: 16px;
    background: #f5f5f5;
}

.yop-vs-auth-landing__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 12px;
    color: var(--yop-vs-auth-muted) !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.yop-vs-auth-landing__tab.is-active {
    background: #fff;
    color: var(--yop-vs-auth-black) !important;
    box-shadow: 0 8px 20px rgba(16, 16, 16, 0.08);
}

.yop-vs-auth-landing__tab-icon {
    color: var(--yop-vs-auth-orange);
    font-weight: 900;
}

.yop-vs-auth-landing__panel-head h2 {
    margin: 0;
    color: var(--yop-vs-auth-black);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.yop-vs-auth-landing__panel-head p {
    margin: 10px 0 0;
    color: var(--yop-vs-auth-muted);
    font-size: 14px;
    line-height: 1.65;
}

.yop-vs-auth-landing__tab-panel[hidden] {
    display: none !important;
}

.yop-vs-auth-landing__shortcode-wrap {
    margin-top: 18px;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-public-auth {
    margin: 0;
    padding: 0;
    background: transparent;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-hero,
.yop-vs-auth-landing__shortcode-wrap .yvm-auth-note,
.yop-vs-auth-landing__shortcode-wrap .yvm-auth-grid,
.yop-vs-auth-landing__shortcode-wrap .yvm-auth-single > .yvm-auth-hero {
    display: none !important;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-card {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-badge,
.yop-vs-auth-landing__shortcode-wrap .yvm-auth-card > h2,
.yop-vs-auth-landing__shortcode-wrap .yvm-auth-card > p {
    display: none;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-form {
    display: grid;
    gap: 14px;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.yop-vs-auth-landing__shortcode-wrap label {
    display: grid;
    gap: 6px;
}

.yop-vs-auth-landing__shortcode-wrap label > span {
    color: var(--yop-vs-auth-black);
    font-size: 13px;
    font-weight: 700;
}

.yop-vs-auth-landing__shortcode-wrap input[type="text"],
.yop-vs-auth-landing__shortcode-wrap input[type="email"],
.yop-vs-auth-landing__shortcode-wrap input[type="password"],
.yop-vs-auth-landing__shortcode-wrap input[type="tel"],
.yop-vs-auth-landing__shortcode-wrap select,
.yop-vs-auth-landing__shortcode-wrap textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--yop-vs-auth-border);
    border-radius: 12px;
    background: #fff;
    color: var(--yop-vs-auth-black);
    font-size: 14px;
}

.yop-vs-auth-landing__shortcode-wrap input:focus,
.yop-vs-auth-landing__shortcode-wrap select:focus,
.yop-vs-auth-landing__shortcode-wrap textarea:focus {
    outline: none;
    border-color: var(--yop-vs-auth-orange);
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.12);
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--yop-vs-auth-muted);
    font-size: 12px;
    line-height: 1.55;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-checkbox input {
    margin-top: 3px;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-button,
.yop-vs-auth-landing__shortcode-wrap button,
.yop-vs-auth-landing__shortcode-wrap input[type="submit"] {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    background: var(--yop-vs-auth-orange);
    color: #fff !important;
    font-size: 15px;
    font-weight: 850;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-button:hover,
.yop-vs-auth-landing__shortcode-wrap button:hover,
.yop-vs-auth-landing__shortcode-wrap input[type="submit"]:hover {
    background: var(--yop-vs-auth-orange-dark);
    transform: translateY(-1px);
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-button--secondary[disabled],
.yop-vs-auth-landing__shortcode-wrap button[disabled] {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-checkbox a {
    color: var(--yop-vs-auth-orange);
    font-weight: 700;
    text-decoration: none;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-social {
    margin-top: 8px;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-login-meta {
    margin-top: 2px;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-switch {
    margin-top: 4px;
}

.yop-vs-auth-landing__shortcode-wrap .yvm-auth-form-note,
.yop-vs-auth-landing__shortcode-wrap small {
    color: var(--yop-vs-auth-muted);
    font-size: 12px;
    line-height: 1.55;
}

.yop-vs-auth-landing__panel-note {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--yop-vs-auth-orange-ultra);
    border: 1px solid #ffe2d2;
}

.yop-vs-auth-landing__panel-note p {
    margin: 0;
    color: var(--yop-vs-auth-muted);
    font-size: 12px;
    line-height: 1.55;
}

.yop-vs-auth-landing__panel-note strong {
    display: block;
    margin-bottom: 2px;
    color: var(--yop-vs-auth-black);
}

.yop-vs-auth-landing__bottom-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.yop-vs-auth-landing__bottom-features article {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--yop-vs-auth-border);
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.yop-vs-auth-landing__bottom-features span {
    display: inline-flex;
    font-size: 20px;
}

.yop-vs-auth-landing__bottom-features strong {
    display: block;
    margin-top: 8px;
    color: var(--yop-vs-auth-black);
    font-size: 13px;
}

.yop-vs-auth-landing__bottom-features p {
    margin: 6px 0 0;
    color: var(--yop-vs-auth-muted);
    font-size: 12px;
    line-height: 1.5;
}

.yop-vs-auth-flow {
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px 72px;
}

.yop-vs-auth-flow__card {
    width: min(640px, 100%);
    padding: 34px;
    border-radius: 22px;
    border: 1px solid var(--yop-vs-auth-border);
    background: #fff;
    box-shadow: var(--yop-vs-auth-shadow);
    text-align: center;
}

.yop-vs-auth-flow__card h1 {
    margin: 0;
    color: var(--yop-vs-auth-black);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
}

.yop-vs-auth-flow__card > p {
    margin: 14px 0 0;
    color: var(--yop-vs-auth-muted);
    font-size: 15px;
    line-height: 1.7;
}

.yop-vs-auth-flow__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 22px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--yop-vs-auth-orange);
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
}

.yop-vs-auth-flow__cta--secondary {
    background: transparent;
    border: 1.5px solid var(--yop-vs-auth-border);
    color: var(--yop-vs-auth-black) !important;
}

@media (max-width: 1080px) {
    .yop-vs-auth-landing__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .yop-vs-auth-landing__stats,
    .yop-vs-auth-landing__bottom-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .yop-vs-auth-landing__container {
        width: min(100%, calc(100% - 24px));
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .yop-vs-auth-landing__feature-grid,
    .yop-vs-auth-landing__stats,
    .yop-vs-auth-landing__bottom-features,
    .yop-vs-auth-landing__shortcode-wrap .yvm-auth-form-row {
        grid-template-columns: 1fr;
    }

    .yop-vs-auth-landing__panel {
        padding: 20px;
    }

    .yop-vs-auth-landing__topbar-inner {
        width: calc(100% - 24px);
    }
}
