/* =========================================================
   HOCKENHEIM-FM
   ACCOUNT
   Login · Registrierung · zukünftiger Hörerbereich
   ========================================================= */


/* ACCOUNT GRUNDLAYOUT */

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

    padding: 78px 0 92px;

    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(255, 95, 0, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 82%,
            rgba(255, 106, 0, 0.045),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
}

.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
        );
}

.login-layout {
    display: grid;
    grid-template-columns: 1fr 470px;
    align-items: center;

    gap: 90px;
}

.login-copy {
    position: relative;
    z-index: 2;
}

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

    margin-top: 24px;

    color: #a0a0a0;

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


/* ACCOUNT VORTEILE */

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

    display: grid;
    gap: 10px;

    margin-top: 36px;
}

.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)
        );
}

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

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

.login-benefit strong {
    display: block;

    color: #d5d5d5;

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

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

    color: #707070;

    font-size: 12px;
}


/* ACCOUNT PANEL */

.login-panel {
    position: relative;
    z-index: 2;
    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);
}

.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
        );
}

.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;
}

.login-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ff6500;

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

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

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

    color: #777;

    font-size: 13px;
}


/* FORMULARE */

.login-form {
    display: grid;

    margin-top: 28px;
}

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

    color: #969696;

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

    text-transform: uppercase;
}

.login-form input[type="text"],
.login-form input[type="email"],
.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;
}

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

.login-form input[type="text"]:focus,
.login-form input[type="email"]:focus,
.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 */

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

    gap: 20px;

    margin: -2px 0 21px;
}

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

    gap: 8px;

    color: #707070;

    font-size: 11px;

    cursor: pointer;
}

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

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

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

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


/* REGISTRIERUNG */

.register-panel {
    padding-top: 32px;
    padding-bottom: 32px;
}

.register-form {
    margin-top: 24px;
}

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

    gap: 10px;

    margin: -1px 0 21px;

    color: #707070;

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

    cursor: pointer;
}

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

    margin-top: 2px;

    accent-color: #ff6a00;
}


/* ACCOUNT BUTTON */

.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;
}

.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);
}


/* TRENNLINIE */

.login-divider {
    position: relative;

    margin: 26px 0;

    text-align: center;
}

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

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

    width: 100%;
    height: 1px;

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

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

    padding: 0 12px;

    background: #10100f;

    color: #555;

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


/* LOGIN / REGISTRIERUNG WECHSEL */

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

.login-register p {
    color: #777;

    font-size: 12px;
}

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

    margin-top: 5px;

    color: #ff7420;

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

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


/* VERANSTALTER HINWEIS */

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

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

    gap: 15px;

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

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

.login-organizer-note span {
    color: #ff7a1a;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;

    text-transform: uppercase;
}

.login-organizer-note a {
    color: #f2f2f2;

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

    text-decoration: none;
}

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

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

@media (max-width: 900px) {

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

        gap: 45px;
    }

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


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

@media (max-width: 650px) {

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

    .login-layout {
        gap: 36px;
    }

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

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

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

        padding: 14px;
    }

    .login-panel,
    .register-panel {
        padding: 25px 21px;

        border-radius: 14px;
    }

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

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

        gap: 9px;
    }

    .register-consent {
        grid-template-columns: 16px 1fr;

        gap: 9px;
    }

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

        gap: 5px;
    }
}

/* =========================================================
   ACCOUNT ÜBERSICHT
   ========================================================= */

.account-page {
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 180px);
    padding: 72px 0 96px;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(255, 95, 0, 0.11),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 88%,
            rgba(255, 106, 0, 0.045),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
}

.account-page::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
        );
}

.account-shell {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.account-loading,
.account-login-required {
    max-width: 720px;

    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 106, 0, 0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.016)
        );

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.account-loading h1,
.account-login-required h1 {
    margin-top: 8px;

    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
}

.account-login-required p:not(.eyebrow) {
    max-width: 600px;

    margin-top: 16px;

    color: #8a8a8a;

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

.account-content {
    width: 100%;
}

.account-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 32px;

    margin-bottom: 34px;
    padding-bottom: 30px;

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

.account-heading h1 {
    margin-top: 8px;

    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -2.5px;
}

.account-heading p:not(.eyebrow) {
    max-width: 760px;

    margin-top: 16px;

    color: #8a8a8a;

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

.account-logout-button {
    flex: 0 0 auto;

    min-width: 126px;
    height: 44px;

    padding: 0 18px;

    border: 1px solid rgba(255, 106, 0, 0.28);
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 106, 0, 0.11),
            rgba(255, 255, 255, 0.02)
        );

    color: #f2f2f2;

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

    cursor: pointer;

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

.account-logout-button:hover {
    transform: translateY(-2px);

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

    background:
        linear-gradient(
            135deg,
            rgba(255, 106, 0, 0.18),
            rgba(255, 255, 255, 0.03)
        );

    box-shadow:
        0 14px 30px rgba(255, 83, 0, 0.12);
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.account-card {
    position: relative;
    overflow: hidden;

    min-height: 260px;

    padding: 28px;

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

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.014)
        );

    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

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

.account-card::before {
    content: "";

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

    width: 42%;
    height: 1px;

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

.account-card:hover {
    transform: translateY(-3px);

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

    box-shadow:
        0 28px 62px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.account-card-highlight {
    border-color: rgba(255, 106, 0, 0.22);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 106, 0, 0.11),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            rgba(255, 106, 0, 0.075),
            rgba(255, 255, 255, 0.018)
        );
}

.account-card h2 {
    margin-top: 7px;

    font-size: 30px;
    line-height: 1.08;
}

.account-card > p:not(.eyebrow) {
    margin-top: 12px;

    color: #858585;

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

.account-data {
    display: grid;

    gap: 9px;

    margin-top: 24px;
}

.account-data-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 22px;

    padding: 12px 14px;

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

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

.account-data-row span {
    color: #666;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.account-data-row strong {
    min-width: 0;

    color: #e8e8e8;

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

    text-align: right;
    overflow-wrap: anywhere;
}

.account-primary-button,
.account-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

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

    border-radius: 9px;

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

    text-decoration: none;

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

.account-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.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.account-primary-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);
}

.account-secondary-button {
    border: 1px solid rgba(255, 106, 0, 0.24);

    background:
        linear-gradient(
            135deg,
            rgba(255, 106, 0, 0.09),
            rgba(255, 255, 255, 0.025)
        );

    color: #f2f2f2;
}

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

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

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


/* =========================================================
   ACCOUNT ÜBERSICHT – TABLET
   ========================================================= */

@media (max-width: 900px) {

    .account-page {
        padding: 58px 0 76px;
    }

    .account-heading {
        flex-direction: column;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   ACCOUNT ÜBERSICHT – SMARTPHONE
   ========================================================= */

@media (max-width: 650px) {

    .account-page {
        padding: 44px 0 60px;
    }

    .account-shell {
        width: min(100% - 24px, 1180px);
    }

    .account-loading,
    .account-login-required {
        padding: 26px 22px;

        border-radius: 14px;
    }

    .account-heading {
        gap: 22px;

        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .account-heading h1 {
        font-size: 42px;
        letter-spacing: -1.6px;
    }

    .account-logout-button {
        width: 100%;
    }

    .account-card {
        min-height: 0;

        padding: 22px;

        border-radius: 14px;
    }

    .account-card h2 {
        font-size: 27px;
    }

    .account-data-row {
        align-items: flex-start;
        flex-direction: column;

        gap: 6px;
    }

    .account-data-row strong {
        text-align: left;
    }

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

