/*
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": "existing_registration_login_pages_design",
  "sub_feature": "frontend_page_styling",
  "file": "assets/css/yop-vs-auth-existing-pages.css",
  "file_role": "frontend_css",
  "object_role": "auth_pages_design",
  "development_status": "done",
  "development_phase": 13,
  "version": "0.1.0-beta.1",
  "last_updated": "2026-06-17",
  "last_change": "Bestehende Registrierung/Login/Access/Logout Seiten im Vereinssuite CI gestaltet.",
  "area": "asset",
  "review_note": "Nur Design/Content-Wrapper; vorhandene Shortcodes bleiben produktiv zuständig.",
  "supports_saas": true,
  "supports_self_hosted": false,
  "supports_multi_tenant": true,
  "requires_active_club_context": false,
  "uses_platform_database": false,
  "uses_club_database": false,
  "uses_separate_club_database": false,
  "stores_club_id": false,
  "requires_license_check": false,
  "requires_plan_check": false,
  "requires_module_check": false,
  "requires_permission_check": false,
  "requires_audit_log": false,
  "handles_personal_data": false,
  "handles_sensitive_data": false,
  "handles_child_data": false,
  "handles_health_data": false,
  "handles_payment_data": false,
  "handles_documents": false,
  "handles_uploads": false,
  "supports_gutenberg": true,
  "supports_elementor": true
}
YOPT_DEV_STAMP_END
*/

:root {
    --yop-vs-orange: #ff5a00;
    --yop-vs-orange-dark: #e84f00;
    --yop-vs-orange-soft: #fff1e8;
    --yop-vs-orange-ultra-soft: #fff8f3;
    --yop-vs-black: #101010;
    --yop-vs-dark: #181818;
    --yop-vs-text: #343434;
    --yop-vs-muted: #6d6d6d;
    --yop-vs-white: #ffffff;
    --yop-vs-bg: #fbfbfb;
    --yop-vs-border: #e9e9e9;
    --yop-vs-shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.06);
    --yop-vs-shadow-card: 0 10px 26px rgba(16, 16, 16, 0.07);
    --yop-vs-shadow-hero: 0 34px 90px rgba(16, 16, 16, 0.14);
    --yop-vs-shadow-orange: 0 12px 26px rgba(255, 90, 0, 0.22);
    --yop-vs-font-main: Inter, Manrope, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.yop-vs-auth-page {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 34%, rgba(255, 90, 0, 0.13), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(255, 90, 0, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    color: var(--yop-vs-text);
    font-family: var(--yop-vs-font-main);
}

.yop-vs-auth-page * {
    box-sizing: border-box;
}

.yop-vs-auth-container {
    width: min(1440px, calc(100% - 56px));
    margin: 0 auto;
}

.yop-vs-auth-hero {
    position: relative;
    padding: 86px 0 74px;
}

.yop-vs-auth-hero::before {
    content: "";
    position: absolute;
    top: 78px;
    left: 0;
    width: 92px;
    height: 168px;
    opacity: 0.25;
    background-image: radial-gradient(var(--yop-vs-orange) 2px, transparent 2px);
    background-size: 18px 18px;
}

.yop-vs-auth-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.87fr);
    gap: 64px;
    align-items: center;
}

.yop-vs-auth-eyebrow,
.yop-vs-auth-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--yop-vs-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.yop-vs-auth-title {
    max-width: 780px;
    margin: 0;
    color: var(--yop-vs-black);
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 950;
}

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

.yop-vs-auth-subtitle {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--yop-vs-muted);
    font-size: 18px;
    line-height: 1.72;
    font-weight: 450;
}

.yop-vs-auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.yop-vs-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none !important;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.yop-vs-auth-btn:hover {
    transform: translateY(-2px);
}

.yop-vs-auth-btn-primary {
    color: #fff !important;
    background: var(--yop-vs-orange);
    box-shadow: var(--yop-vs-shadow-orange);
}

.yop-vs-auth-btn-primary:hover {
    background: var(--yop-vs-orange-dark);
}

.yop-vs-auth-btn-secondary {
    color: var(--yop-vs-black) !important;
    background: #fff;
    border: 1px solid var(--yop-vs-border);
    box-shadow: var(--yop-vs-shadow-card);
}

.yop-vs-auth-btn-secondary:hover {
    color: #fff !important;
    background: var(--yop-vs-black);
    border-color: var(--yop-vs-black);
}

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

.yop-vs-auth-benefit {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(233, 233, 233, 0.9);
    border-radius: 24px;
    box-shadow: 0 8px 22px rgba(16, 16, 16, 0.04);
    backdrop-filter: blur(10px);
}

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

.yop-vs-auth-benefit h2 {
    margin: 0 0 7px;
    color: var(--yop-vs-black);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

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

.yop-vs-auth-shortcode-card {
    overflow: hidden;
    padding: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(233, 233, 233, 0.95);
    border-radius: 30px;
    box-shadow: var(--yop-vs-shadow-hero);
    backdrop-filter: blur(16px);
}

.yop-vs-auth-shortcode-head {
    margin-bottom: 24px;
}

.yop-vs-auth-shortcode-head h2 {
    margin: 0;
    color: var(--yop-vs-black);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 950;
}

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

.yop-vs-auth-shortcode-wrap {
    padding: 0;
}

/* Vorhandene Shortcode-Ausgabe modernisieren */
.yop-vs-auth-shortcode-wrap form {
    display: grid;
    gap: 16px;
    margin: 0;
}

.yop-vs-auth-shortcode-wrap label {
    color: var(--yop-vs-black);
    font-size: 13px;
    font-weight: 850;
}

.yop-vs-auth-shortcode-wrap input[type="text"],
.yop-vs-auth-shortcode-wrap input[type="email"],
.yop-vs-auth-shortcode-wrap input[type="password"],
.yop-vs-auth-shortcode-wrap input[type="url"],
.yop-vs-auth-shortcode-wrap input[type="tel"],
.yop-vs-auth-shortcode-wrap select,
.yop-vs-auth-shortcode-wrap textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: var(--yop-vs-text);
    background: #fff;
    border: 1px solid #dcdfe5;
    border-radius: 12px;
    font-family: var(--yop-vs-font-main);
    font-size: 14px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.yop-vs-auth-shortcode-wrap textarea {
    min-height: 110px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.yop-vs-auth-shortcode-wrap input:focus,
.yop-vs-auth-shortcode-wrap select:focus,
.yop-vs-auth-shortcode-wrap textarea:focus {
    border-color: rgba(255, 90, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.10);
}

.yop-vs-auth-shortcode-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--yop-vs-orange);
}

.yop-vs-auth-shortcode-wrap button,
.yop-vs-auth-shortcode-wrap input[type="submit"],
.yop-vs-auth-shortcode-wrap .button,
.yop-vs-auth-shortcode-wrap a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: auto;
    padding: 13px 22px;
    border: 0;
    border-radius: 14px;
    color: #fff !important;
    background: var(--yop-vs-orange) !important;
    box-shadow: var(--yop-vs-shadow-orange);
    font-family: var(--yop-vs-font-main);
    font-size: 14px;
    font-weight: 950;
    line-height: 1.2;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.yop-vs-auth-shortcode-wrap button:hover,
.yop-vs-auth-shortcode-wrap input[type="submit"]:hover,
.yop-vs-auth-shortcode-wrap .button:hover,
.yop-vs-auth-shortcode-wrap a.button:hover {
    transform: translateY(-1px);
    background: var(--yop-vs-orange-dark) !important;
    box-shadow: 0 16px 30px rgba(255, 90, 0, 0.24);
}

.yop-vs-auth-shortcode-wrap h1,
.yop-vs-auth-shortcode-wrap h2,
.yop-vs-auth-shortcode-wrap h3 {
    color: var(--yop-vs-black);
    letter-spacing: -0.03em;
    font-weight: 950;
}

.yop-vs-auth-shortcode-wrap p {
    color: var(--yop-vs-text);
    font-size: 15px;
    line-height: 1.6;
}

.yop-vs-auth-note {
    margin-top: 22px;
    padding: 18px 18px;
    color: var(--yop-vs-text);
    background: linear-gradient(135deg, var(--yop-vs-orange-ultra-soft), #fff);
    border: 1px solid rgba(255, 90, 0, 0.18);
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.55;
}

.yop-vs-auth-note strong {
    color: var(--yop-vs-orange-dark);
}

.yop-vs-auth-trust {
    padding: 0 0 86px;
}

.yop-vs-auth-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.yop-vs-auth-trust-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--yop-vs-border);
    border-radius: 24px;
    box-shadow: var(--yop-vs-shadow-card);
}

.yop-vs-auth-trust-card strong {
    display: block;
    color: var(--yop-vs-black);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 950;
}

.yop-vs-auth-trust-card span {
    display: block;
    margin-top: 9px;
    color: var(--yop-vs-muted);
    font-size: 14px;
    line-height: 1.55;
}

.yop-vs-auth-security {
    padding: 86px 0;
    background:
        radial-gradient(circle at 88% 20%, rgba(255, 90, 0, 0.22), transparent 24%),
        linear-gradient(135deg, #181818 0%, #070707 100%);
}

.yop-vs-auth-security-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 54px;
    align-items: center;
}

.yop-vs-auth-security h2 {
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 3.4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 950;
}

.yop-vs-auth-security p {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.72;
}

.yop-vs-auth-security-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.yop-vs-auth-security-cards article {
    min-height: 168px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
}

.yop-vs-auth-security-cards strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 950;
}

.yop-vs-auth-security-cards span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1180px) {
    .yop-vs-auth-grid,
    .yop-vs-auth-security-grid {
        grid-template-columns: 1fr;
    }

    .yop-vs-auth-shortcode-card {
        max-width: 760px;
        width: 100%;
    }

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

@media (max-width: 760px) {
    .yop-vs-auth-container {
        width: min(100% - 32px, 1440px);
    }

    .yop-vs-auth-hero {
        padding: 58px 0 52px;
    }

    .yop-vs-auth-title {
        font-size: clamp(38px, 12vw, 54px);
    }

    .yop-vs-auth-subtitle {
        font-size: 16px;
    }

    .yop-vs-auth-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .yop-vs-auth-btn,
    .yop-vs-auth-shortcode-wrap button,
    .yop-vs-auth-shortcode-wrap input[type="submit"],
    .yop-vs-auth-shortcode-wrap .button,
    .yop-vs-auth-shortcode-wrap a.button {
        width: 100%;
    }

    .yop-vs-auth-benefits,
    .yop-vs-auth-trust-grid,
    .yop-vs-auth-security-cards {
        grid-template-columns: 1fr;
    }

    .yop-vs-auth-shortcode-card {
        padding: 24px;
        border-radius: 24px;
    }

    .yop-vs-auth-security {
        padding: 62px 0;
    }
}

@media (max-width: 460px) {
    .yop-vs-auth-benefit {
        grid-template-columns: 1fr;
    }
}
