/* =========================================================
   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;
    }
}