/* Grundlegende Einstellungen */
* {
    box-sizing: border-box;
}
body {
    background-color: #1e1e1e; /* Dunkler Hintergrund */
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container für die zentrierte Anzeige */
.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* Info-Box Styling (wie Login-Box) */
.info-box {
    background-color: #252525; /* Dunkles Grau passend zum Login */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3); /* Grüner Glow */
    text-align: center;
}

/* Überschrift */
.info-box h2 {
    margin-bottom: 20px;
    color: #4caf50; /* Akzentfarbe */
}

/* Text */
.info-box p {
    color: #ffffff;
    margin: 10px 0;
}

/* Links */
.info-box a {
    display: inline-block;
    padding: 12px 20px;
    background-color: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s;
}

.info-box a:hover {
    background-color: #45a049;
}

.info-box a:active {
    background-color: #388e3c;
}

/* Trennlinie */
.info-box hr {
    border: 0;
    height: 1px;
    background: #4caf50;
    margin: 20px 0;
}