body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f0e0c2;
}

.background-box {
    width: 1200px;
    height: 800px;
    max-width: 100%;
    margin: 0 auto;
    background-image: url("bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
}

.window {
    width: 450px;
    padding: 30px;
    background: rgba(255,255,255,0.87);
    border-radius: 12px;
    position: absolute;
    left: 50%;
    top: 160px;
    transform: translateX(-50%);
    box-sizing: border-box;
    box-shadow: 0 0 18px rgba(0,0,0,0.15);
}

h2 {
    margin-top: 0;
    text-align: center;
    font-size: 24px;
}

p {
    font-size: 16px;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #d9822b;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

/* Links unter dem Formular */
.links {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.9;
}

.links a {
    color: #c26c22;
    text-decoration: none;
}

/* Footer */
.footer-links {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 13px;
}

.footer-links a {
    color: #c26c22;
    text-decoration: none;
    margin: 0 8px;
}

/* -------------------------------------- */
/* NEU: Token-Link bricht korrekt um      */
/* -------------------------------------- */
.window a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}
