#loginWrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#loginCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 360px;
    gap: 1.5rem;
}

fieldset {
    padding: 2rem;
}

#login-btn {
    margin-top: 1rem;
}

.switch-row {
    padding: 1rem;
}

.keinZugang {
    /* position: absolute; */
    /* top: 247px; */
    padding-inline: 14px;
}

.keinZugang button {
    margin-bottom: 1rem;
    background: var(--color-secondary);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    background-image: url('../img/background/login-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.password-field input {
    width: 100%;
    margin-bottom: 0;
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.password-toggle:hover {
    opacity: 0.75;
}

#clubSelection {
    display: none;
    padding: 2rem;
    border-radius: var(--bradius);
    background: var(--color-app-bg);
    max-width: 400px;
}

#clubSelection h2 {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

#register-btn {
    color: var(--color-surface);
    background: var(--color-secondary);
    border: none;
    backdrop-filter: blur(1px);
}

body.channel-app.login #loginWrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

body.channel-app.login #loginWrapper.is-visible {
    opacity: 1;
    visibility: visible;
}

body.app-splash-active {
    overflow: hidden;
}

.app-splash {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    opacity: 1;
    transition: opacity 320ms ease, visibility 320ms ease;
}

.app-splash.is-hiding {
    opacity: 0;
    visibility: hidden;
}

.app-splash.hidden {
    display: none;
}

.app-splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
}

.app-splash-image {
    width: 100vw;
    max-width: 100vw;
    height: auto;
}

.app-splash-welcome {
    margin-top: 0.5rem;
    color: var(--color-surface);
    font-size: clamp(1.5rem, 3.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.app-splash-brand {
    font-size: clamp(2.1rem, 7vw, 4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.app-splash-brand .book {
    color: var(--color-secondary);
}

.app-splash-brand .and {
    color: var(--color-accent);
}

.app-splash-brand .play {
    color: var(--color-secondary);
    font-style: italic;
}
