body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    /* Dein exakter Hintergrund-Look */
    background-color: #000814;
    background-image: linear-gradient(rgba(0, 8, 20, 0.7), rgba(0, 8, 20, 0.9)), url('/static/images/scheibe.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.header-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.title-text {
    font-size: 2.8rem;
    margin-bottom: 35px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
}

.container-wrapper {
    width: 85%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* DER ECHTE LOGIN-BUTTON LOOK */
.btn-bullshark {
    /* Verlauf von Hellblau zu Dunkelblau wie auf deinem Foto */
    background: linear-gradient(to bottom, #007eb9 0%, #005a8e 100%);
    border: 1px solid #004d7a;
    border-radius: 50px; /* Kapselform wie im Login */
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    /* Der 3D-Effekt durch Innenschatten und Außenschatten */
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 5px 15px rgba(0, 0, 0, 0.5);
    display: block;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}

/* Der feine Lichtreflex auf der oberen Hälfte */
.btn-bullshark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
}

.btn-bullshark:active {
    transform: translateY(2px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 2px 5px rgba(0, 0, 0, 0.5);
}

.btn-danger {
    background: linear-gradient(to bottom, #d32f2f 0%, #a11b1b 100%);
    border-color: #801515;
}
