.captcha-box {
    display: flex;
    align-items: center;
    background-color: #333333;
    padding: 10px;
    border-radius: 4px;
}

#captcha {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

#refresh-captcha {
    background-color: transparent;
    border: none;
    color: #00bcd4;
    cursor: pointer;
}

#refresh-captcha:hover {
    color: #00ffff;
}

/* Pop-up Styles */
.popup {
    position: fixed;
    top: 50%; /* In die vertikale Mitte verschieben */
    left: 50%; /* In die horizontale Mitte verschieben */
    transform: translate(-50%, -50%); /* Zurückverschieben um die Hälfte der eigenen Breite und Höhe */
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    color: white;
    text-align: center;
    z-index: 1000;
    display: none; /* Standardmäßig ausgeblendet */
}

.popup.show {
    display: block; /* Bei Bedarf einblenden */
}
