/* =========================================================
   HOCKENHEIM-FM
   VERANSTALTERPORTAL
   Events · Verwaltung · Medienfreigaben
   Registrierung · Login
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.organizer-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 90px;

    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(255, 95, 0, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(255, 106, 0, 0.05),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
}

.organizer-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: min(1180px, calc(100% - 40px));
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 106, 0, 0.45),
            transparent
        );
}

.organizer-hero::after {
    content: "";
    position: absolute;
    right: -130px;
    top: 90px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 106, 0, 0.07);
    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(255, 106, 0, 0.018),
        0 0 0 140px rgba(255, 106, 0, 0.012);

    pointer-events: none;
}

.organizer-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;

    gap: 85px;
}

.organizer-hero-copy h1 {
    max-width: 700px;
}

.organizer-hero-intro {
    max-width: 680px;
    margin-top: 25px;

    color: #999;

    font-size: 17px;
    line-height: 1.75;
}

.organizer-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
    margin-top: 34px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.organizer-primary-button,
.organizer-secondary-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 850;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

.organizer-primary-button {
    border: 1px solid rgba(255, 255, 255, 0.12);

    background:
        linear-gradient(
            135deg,
            #ff8526,
            #d94600
        );

    color: #fff;

    box-shadow:
        0 12px 30px rgba(255, 83, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.organizer-primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 36px rgba(255, 83, 0, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.organizer-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.09);

    background: rgba(255, 255, 255, 0.025);

    color: #a8a8a8;
}

.organizer-secondary-button:hover {
    transform: translateY(-2px);

    border-color: rgba(255, 106, 0, 0.28);
    background: rgba(255, 106, 0, 0.045);

    color: #fff;
}


/* =========================================================
   HERO PANEL
   ========================================================= */

.organizer-hero-panel {
    position: relative;
    overflow: hidden;

    padding: 31px;

    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 17px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 106, 0, 0.1),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.organizer-hero-panel::before {
    content: "";

    position: absolute;
    top: 0;
    left: 12%;

    width: 44%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff6a00,
            transparent
        );
}

.organizer-hero-panel-head {
    display: flex;
    align-items: center;

    gap: 9px;
    margin-bottom: 18px;

    color: #ff7924;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.organizer-hero-panel-head span {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #ff6500;

    box-shadow:
        0 0 12px rgba(255, 101, 0, 0.65);
}

.organizer-hero-panel > strong {
    display: block;

    color: #f1f1f1;

    font-size: 22px;
    line-height: 1.3;
}

.organizer-hero-panel > p {
    margin-top: 12px;

    color: #7d7d7d;

    font-size: 13px;
    line-height: 1.7;
}

.organizer-stat-grid {
    display: grid;

    gap: 8px;
    margin-top: 25px;
}

.organizer-stat-grid > div {
    display: grid;
    grid-template-columns: 37px 1fr;
    align-items: center;

    gap: 12px;

    padding: 11px 13px;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.16);
}

.organizer-stat-grid span {
    color: #ff6a00;

    font-size: 10px;
    font-weight: 900;
}

.organizer-stat-grid strong {
    color: #bdbdbd;

    font-size: 12px;
}


/* =========================================================
   PORTAL / DASHBOARD
   ========================================================= */

.organizer-portal-section {
    padding: 85px 0;

    background: #060606;
}

.organizer-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.organizer-dashboard-card {
    position: relative;
    overflow: hidden;

    min-height: 275px;

    display: flex;
    flex-direction: column;

    padding: 27px;

    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.038),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.organizer-dashboard-card::after {
    content: "";

    position: absolute;
    right: -65px;
    bottom: -75px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 106, 0, 0.07),
            transparent 68%
        );

    pointer-events: none;
}

.organizer-dashboard-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 106, 0, 0.2);

    background:
        linear-gradient(
            145deg,
            rgba(255, 106, 0, 0.045),
            rgba(255, 255, 255, 0.014)
        );
}

.organizer-dashboard-card-highlight {
    border-color: rgba(255, 106, 0, 0.16);

    background:
        linear-gradient(
            145deg,
            rgba(255, 106, 0, 0.06),
            rgba(255, 255, 255, 0.014)
        );
}

.organizer-dashboard-number {
    margin-bottom: 31px;

    color: #ff6a00;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.organizer-dashboard-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;
}

.organizer-dashboard-card p {
    position: relative;
    z-index: 2;

    color: #777;

    font-size: 13px;
    line-height: 1.7;
}

.organizer-dashboard-card a {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 25px;

    color: #ff7420;

    font-size: 12px;
    font-weight: 800;
}

.organizer-dashboard-card a:hover {
    color: #ff9a51;
}


/* =========================================================
   MEDIENFREIGABE
   ========================================================= */

.organizer-media-section {
    padding: 92px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.04);

    background:
        radial-gradient(
            circle at 82% 50%,
            rgba(255, 106, 0, 0.07),
            transparent 30%
        ),
        #090909;
}

.organizer-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    align-items: center;

    gap: 80px;
}

.organizer-media-copy > p:not(.eyebrow) {
    max-width: 570px;

    margin-top: 18px;

    color: #888;

    font-size: 14px;
    line-height: 1.75;
}

.organizer-media-note {
    max-width: 570px;

    margin-top: 28px;
    padding: 17px 18px;

    border-left: 2px solid #ff6a00;

    background: rgba(255, 106, 0, 0.04);
}

.organizer-media-note strong {
    display: block;

    margin-bottom: 5px;

    color: #e5e5e5;

    font-size: 12px;
}

.organizer-media-note span {
    display: block;

    color: #777;

    font-size: 11px;
    line-height: 1.6;
}


/* MEDIEN PANEL */

.organizer-media-panel {
    overflow: hidden;

    border: 1px solid rgba(255, 106, 0, 0.16);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.3);
}

.organizer-media-panel-head {
    padding: 15px 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    background: rgba(0, 0, 0, 0.24);

    color: #ff7420;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.organizer-media-option {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;

    gap: 25px;

    padding: 19px 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.organizer-media-option:last-child {
    border-bottom: 0;
}

.organizer-media-option strong {
    display: block;

    color: #d2d2d2;

    font-size: 12px;
}

.organizer-media-option span {
    display: block;

    margin-top: 4px;

    color: #656565;

    font-size: 10px;
    line-height: 1.5;
}

.organizer-permission-state {
    min-width: 76px;

    padding: 7px 9px;

    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 6px;

    background: rgba(255, 106, 0, 0.045);

    color: #ff7420;

    text-align: center;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.5px;
}


/* =========================================================
   BESTÄTIGUNG
   ========================================================= */

.organizer-confirmation-section {
    padding: 90px 0;

    background: #050505;
}

.organizer-confirmation-box {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;

    gap: 85px;

    padding: 42px;

    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 106, 0, 0.08),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.032),
            rgba(255, 255, 255, 0.01)
        );
}

.organizer-confirmation-copy > p:not(.eyebrow) {
    max-width: 580px;

    margin-top: 18px;

    color: #7e7e7e;

    font-size: 14px;
    line-height: 1.75;
}

.organizer-confirmation-preview {
    padding: 24px;

    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 12px;

    background: rgba(0, 0, 0, 0.32);
}

.organizer-confirmation-status {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #b9b9b9;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.organizer-confirmation-status span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ff6a00;

    box-shadow:
        0 0 11px rgba(255, 106, 0, 0.55);
}

.organizer-confirmation-id {
    margin-top: 11px;
    padding-bottom: 17px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    color: #fff;

    font-size: 19px;
    font-weight: 850;
    letter-spacing: 0.5px;
}

.organizer-confirmation-lines {
    display: grid;

    gap: 10px;
    margin-top: 17px;
}

.organizer-confirmation-lines > div {
    display: flex;
    justify-content: space-between;

    gap: 20px;
}

.organizer-confirmation-lines span {
    color: #606060;

    font-size: 10px;
}

.organizer-confirmation-lines strong {
    color: #a8a8a8;

    text-align: right;

    font-size: 10px;
}


/* =========================================================
   VERANSTALTERZUGANG
   ========================================================= */

.organizer-access-section {
    padding: 0 0 90px;

    background: #050505;
}

.organizer-access-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;

    gap: 60px;

    padding: 36px 40px;

    border: 1px solid rgba(255, 106, 0, 0.16);
    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 106, 0, 0.055),
            rgba(255, 255, 255, 0.015)
        );
}

.organizer-access-box > div:first-child > p:not(.eyebrow) {
    max-width: 670px;

    margin-top: 14px;

    color: #7c7c7c;

    font-size: 13px;
    line-height: 1.7;
}

.organizer-access-actions {
    display: flex;
    flex-direction: column;

    gap: 9px;

    min-width: 220px;
}


/* =========================================================
   VERANSTALTER REGISTRIERUNG
   ========================================================= */

.organizer-register-section {
    position: relative;
    overflow: hidden;

    padding: 76px 0 92px;

    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(255, 95, 0, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(255, 106, 0, 0.045),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
}

.organizer-register-section::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(1180px, calc(100% - 40px));
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 106, 0, 0.42),
            transparent
        );
}

.organizer-register-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    align-items: center;

    gap: 85px;
}

.organizer-register-copy h1 {
    max-width: 670px;
}

.organizer-register-intro {
    max-width: 650px;

    margin-top: 24px;

    color: #999;

    font-size: 17px;
    line-height: 1.75;
}

.organizer-register-benefits {
    max-width: 650px;

    display: grid;

    gap: 10px;
    margin-top: 35px;
}

.organizer-register-benefit {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;

    gap: 15px;

    padding: 16px 18px;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );
}

.organizer-register-benefit > span {
    color: #ff6a00;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.organizer-register-benefit strong {
    display: block;

    color: #d5d5d5;

    font-size: 13px;
    font-weight: 800;
}

.organizer-register-benefit p {
    margin-top: 3px;

    color: #707070;

    font-size: 12px;
}

.organizer-register-separation {
    max-width: 650px;

    margin-top: 24px;
    padding: 16px 18px;

    border-left: 2px solid #ff6a00;

    background: rgba(255, 106, 0, 0.035);
}

.organizer-register-separation strong {
    display: block;

    margin-bottom: 4px;

    color: #d5d5d5;

    font-size: 11px;
}

.organizer-register-separation span {
    display: block;

    color: #6d6d6d;

    font-size: 10px;
    line-height: 1.6;
}


/* REGISTRIERUNG PANEL */

.organizer-register-panel {
    position: relative;
    overflow: hidden;

    padding: 34px;

    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 102, 0, 0.095),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.016)
        );

    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.organizer-register-panel::before {
    content: "";

    position: absolute;
    top: 0;
    left: 12%;

    width: 45%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 106, 0, 0.85),
            transparent
        );
}

.organizer-register-panel-head {
    display: flex;
    align-items: center;

    gap: 9px;
    margin-bottom: 17px;

    color: #ff7924;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.organizer-register-panel-head span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 12px rgba(255, 101, 0, 0.65);
}

.organizer-register-panel h2 {
    font-size: 32px;
}

.organizer-register-panel-intro {
    margin-top: 8px;

    color: #777;

    font-size: 13px;
}


/* REGISTRIERUNGSFORMULAR */

.organizer-register-form {
    display: grid;

    margin-top: 25px;
}

.organizer-register-form > label:not(.organizer-register-consent) {
    margin-bottom: 7px;

    color: #969696;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;

    text-transform: uppercase;
}

.organizer-register-form input[type="text"],
.organizer-register-form input[type="email"],
.organizer-register-form input[type="tel"],
.organizer-register-form input[type="password"] {
    width: 100%;
    height: 46px;

    padding: 0 14px;
    margin-bottom: 16px;

    outline: none;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.28);

    color: #f0f0f0;

    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.organizer-register-form input[type="text"]::placeholder,
.organizer-register-form input[type="email"]::placeholder,
.organizer-register-form input[type="tel"]::placeholder,
.organizer-register-form input[type="password"]::placeholder {
    color: #4f4f4f;
}

.organizer-register-form input[type="text"]:focus,
.organizer-register-form input[type="email"]:focus,
.organizer-register-form input[type="tel"]:focus,
.organizer-register-form input[type="password"]:focus {
    border-color: rgba(255, 106, 0, 0.48);

    background: rgba(0, 0, 0, 0.38);

    box-shadow:
        0 0 0 3px rgba(255, 106, 0, 0.07);
}

.organizer-register-consent {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: start;

    gap: 10px;

    margin: 0 0 21px;

    color: #707070;

    font-size: 10px;
    line-height: 1.55;

    cursor: pointer;
}

.organizer-register-consent input {
    width: 14px;
    height: 14px;

    margin-top: 2px;

    accent-color: #ff6a00;
}

.organizer-register-form button {
    height: 49px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #ff8526,
            #d94600
        );

    color: #fff;

    font-size: 13px;
    font-weight: 850;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(255, 83, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.organizer-register-form button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 36px rgba(255, 83, 0, 0.29),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.organizer-register-divider {
    position: relative;

    margin: 24px 0;

    text-align: center;
}

.organizer-register-divider::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.06);
}

.organizer-register-divider span {
    position: relative;
    z-index: 2;

    padding: 0 12px;

    background: #10100f;

    color: #555;

    font-size: 9px;
    text-transform: uppercase;
}

.organizer-register-login {
    text-align: center;
}

.organizer-register-login p {
    color: #777;

    font-size: 11px;
}

.organizer-register-login a {
    display: inline-block;

    margin-top: 5px;

    color: #ff7420;

    font-size: 13px;
    font-weight: 800;
}

.organizer-register-login a:hover {
    color: #ff9a51;
}

.organizer-register-user-note {
    margin-top: 26px;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.organizer-register-user-note span {
    color: #555;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;

    text-transform: uppercase;
}

.organizer-register-user-note a {
    color: #858585;

    font-size: 10px;
    font-weight: 750;
}

.organizer-register-user-note a:hover {
    color: #ff6a00;
}


/* =========================================================
   VERANSTALTER LOGIN
   ========================================================= */

.organizer-login-section {
    position: relative;
    overflow: hidden;

    padding: 76px 0 92px;

    background:
        radial-gradient(
            circle at 78% 32%,
            rgba(255, 95, 0, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(255, 106, 0, 0.045),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
}

.organizer-login-section::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(1180px, calc(100% - 40px));
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 106, 0, 0.42),
            transparent
        );
}

.organizer-login-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    align-items: center;

    gap: 90px;
}

.organizer-login-copy h1 {
    max-width: 670px;
}

.organizer-login-intro {
    max-width: 650px;

    margin-top: 24px;

    color: #999;

    font-size: 17px;
    line-height: 1.75;
}


/* LOGIN VORTEILE */

.organizer-login-benefits {
    max-width: 650px;

    display: grid;

    gap: 10px;
    margin-top: 35px;
}

.organizer-login-benefit {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;

    gap: 15px;

    padding: 16px 18px;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );
}

.organizer-login-benefit > span {
    color: #ff6a00;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.organizer-login-benefit strong {
    display: block;

    color: #d5d5d5;

    font-size: 13px;
    font-weight: 800;
}

.organizer-login-benefit p {
    margin-top: 3px;

    color: #707070;

    font-size: 12px;
}


/* LOGIN TRENNHINWEIS */

.organizer-login-separation {
    max-width: 650px;

    margin-top: 24px;
    padding: 16px 18px;

    border-left: 2px solid #ff6a00;

    background: rgba(255, 106, 0, 0.035);
}

.organizer-login-separation strong {
    display: block;

    margin-bottom: 4px;

    color: #d5d5d5;

    font-size: 11px;
}

.organizer-login-separation span {
    display: block;

    color: #6d6d6d;

    font-size: 10px;
    line-height: 1.6;
}


/* LOGIN PANEL */

.organizer-login-panel {
    position: relative;
    overflow: hidden;

    padding: 35px;

    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 102, 0, 0.095),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.016)
        );

    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.organizer-login-panel::before {
    content: "";

    position: absolute;
    top: 0;
    left: 12%;

    width: 45%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 106, 0, 0.85),
            transparent
        );
}

.organizer-login-panel-head {
    display: flex;
    align-items: center;

    gap: 9px;
    margin-bottom: 17px;

    color: #ff7924;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.organizer-login-panel-head span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 12px rgba(255, 101, 0, 0.65);
}

.organizer-login-panel h2 {
    font-size: 32px;
}

.organizer-login-panel-intro {
    margin-top: 8px;

    color: #777;

    font-size: 13px;
}


/* LOGIN FORMULAR */

.organizer-login-form {
    display: grid;

    margin-top: 28px;
}

.organizer-login-form > label {
    margin-bottom: 7px;

    color: #969696;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;

    text-transform: uppercase;
}

.organizer-login-form input[type="email"],
.organizer-login-form input[type="password"] {
    width: 100%;
    height: 48px;

    padding: 0 14px;
    margin-bottom: 18px;

    outline: none;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.28);

    color: #f0f0f0;

    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.organizer-login-form input[type="email"]::placeholder,
.organizer-login-form input[type="password"]::placeholder {
    color: #4f4f4f;
}

.organizer-login-form input[type="email"]:focus,
.organizer-login-form input[type="password"]:focus {
    border-color: rgba(255, 106, 0, 0.48);

    background: rgba(0, 0, 0, 0.38);

    box-shadow:
        0 0 0 3px rgba(255, 106, 0, 0.07);
}


/* LOGIN OPTIONEN */

.organizer-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin: -2px 0 21px;
}

.organizer-login-remember {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0;

    color: #707070;

    font-size: 11px;

    cursor: pointer;

    text-transform: none;
}

.organizer-login-remember input {
    accent-color: #ff6a00;
}

.organizer-login-options > a {
    color: #777;

    font-size: 11px;
    font-weight: 700;
}

.organizer-login-options > a:hover {
    color: #ff6a00;
}


/* LOGIN BUTTON */

.organizer-login-form button {
    height: 49px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #ff8526,
            #d94600
        );

    color: #fff;

    font-size: 13px;
    font-weight: 850;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(255, 83, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.organizer-login-form button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 36px rgba(255, 83, 0, 0.29),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}


/* LOGIN TRENNLINIE */

.organizer-login-divider {
    position: relative;

    margin: 26px 0;

    text-align: center;
}

.organizer-login-divider::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.06);
}

.organizer-login-divider span {
    position: relative;
    z-index: 2;

    padding: 0 12px;

    background: #10100f;

    color: #555;

    font-size: 9px;

    text-transform: uppercase;
}


/* LOGIN → REGISTRIERUNG */

.organizer-login-register {
    text-align: center;
}

.organizer-login-register p {
    color: #777;

    font-size: 11px;
}

.organizer-login-register a {
    display: inline-block;

    margin-top: 5px;

    color: #ff7420;

    font-size: 13px;
    font-weight: 800;
}

.organizer-login-register a:hover {
    color: #ff9a51;
}


/* HÖRERLOGIN HINWEIS */

.organizer-login-user-note {
    margin-top: 27px;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.organizer-login-user-note span {
    color: #555;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;

    text-transform: uppercase;
}

.organizer-login-user-note a {
    color: #858585;

    font-size: 10px;
    font-weight: 750;
}

.organizer-login-user-note a:hover {
    color: #ff6a00;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .organizer-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .organizer-hero-panel {
        max-width: 650px;
    }

    .organizer-dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }

    .organizer-dashboard-card-highlight {
        grid-column: 1 / -1;
    }

    .organizer-media-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .organizer-media-panel {
        max-width: 700px;
    }

    .organizer-confirmation-box {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .organizer-confirmation-preview {
        max-width: 560px;
    }

    .organizer-access-box {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .organizer-access-actions {
        max-width: 320px;
    }


    /* REGISTRIERUNG */

    .organizer-register-layout {
        grid-template-columns: 1fr;

        gap: 46px;
    }

    .organizer-register-panel {
        width: 100%;
        max-width: 620px;
    }


    /* LOGIN */

    .organizer-login-layout {
        grid-template-columns: 1fr;

        gap: 46px;
    }

    .organizer-login-panel {
        width: 100%;
        max-width: 600px;
    }
}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 650px) {

    .organizer-hero {
        padding: 54px 0 62px;
    }

    .organizer-hero::after {
        right: -190px;
        top: 180px;

        width: 340px;
        height: 340px;
    }

    .organizer-hero-inner {
        gap: 35px;
    }

    .organizer-hero-intro {
        font-size: 15px;
    }

    .organizer-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .organizer-primary-button,
    .organizer-secondary-button {
        width: 100%;

        text-align: center;
    }

    .organizer-hero-panel {
        padding: 24px 20px;

        border-radius: 13px;
    }

    .organizer-hero-panel > strong {
        font-size: 19px;
    }


    /* PORTAL */

    .organizer-portal-section {
        padding: 60px 0;
    }

    .organizer-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .organizer-dashboard-card-highlight {
        grid-column: auto;
    }

    .organizer-dashboard-card {
        min-height: 245px;

        padding: 23px;
    }


    /* MEDIENFREIGABE */

    .organizer-media-section {
        padding: 65px 0;
    }

    .organizer-media-grid {
        gap: 34px;
    }

    .organizer-media-option {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 17px;
    }

    .organizer-permission-state {
        width: fit-content;
    }


    /* BESTÄTIGUNG */

    .organizer-confirmation-section {
        padding: 62px 0;
    }

    .organizer-confirmation-box {
        padding: 25px 20px;

        gap: 30px;

        border-radius: 13px;
    }

    .organizer-confirmation-preview {
        padding: 19px 16px;
    }

    .organizer-confirmation-id {
        font-size: 15px;

        overflow-wrap: anywhere;
    }

    .organizer-confirmation-lines > div {
        align-items: flex-start;
        flex-direction: column;

        gap: 2px;
    }

    .organizer-confirmation-lines strong {
        text-align: left;
    }


    /* ZUGANG */

    .organizer-access-section {
        padding-bottom: 65px;
    }

    .organizer-access-box {
        padding: 25px 20px;

        gap: 26px;

        border-radius: 13px;
    }

    .organizer-access-actions {
        width: 100%;
        max-width: none;
    }


    /* REGISTRIERUNG */

    .organizer-register-section {
        padding: 52px 0 66px;
    }

    .organizer-register-layout {
        gap: 36px;
    }

    .organizer-register-intro {
        font-size: 15px;
    }

    .organizer-register-benefits {
        margin-top: 28px;
    }

    .organizer-register-benefit {
        grid-template-columns: 35px 1fr;

        padding: 14px;
    }

    .organizer-register-panel {
        padding: 25px 21px;

        border-radius: 14px;
    }

    .organizer-register-panel h2 {
        font-size: 29px;
    }

    .organizer-register-form input[type="text"],
    .organizer-register-form input[type="email"],
    .organizer-register-form input[type="tel"],
    .organizer-register-form input[type="password"] {
        height: 46px;

        margin-bottom: 15px;
    }

    .organizer-register-user-note {
        align-items: flex-start;
        flex-direction: column;

        gap: 5px;
    }


    /* LOGIN */

    .organizer-login-section {
        padding: 52px 0 66px;
    }

    .organizer-login-layout {
        gap: 36px;
    }

    .organizer-login-intro {
        font-size: 15px;
    }

    .organizer-login-benefits {
        margin-top: 28px;
    }

    .organizer-login-benefit {
        grid-template-columns: 35px 1fr;

        padding: 14px;
    }

    .organizer-login-panel {
        padding: 25px 21px;

        border-radius: 14px;
    }

    .organizer-login-panel h2 {
        font-size: 29px;
    }

    .organizer-login-options {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }

    .organizer-login-user-note {
        align-items: flex-start;
        flex-direction: column;

        gap: 5px;
    }
}