
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e20615;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

label {
    text-align: left;
    width: 100%;
    display: block;
}

input[type="text"], input[type="password"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: #fff;
    background-color: #007BFF;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
    width: 100%;
}

#logoutButton {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(to right, #000000, #645d5d);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2em;
    display: none;
    border: #060202;
}

#logoutButton:hover {
    background: linear-gradient(to right, rgba(153, 153, 153, 0.71), #000000);
}

#stempelInfo {
    display: none;
    margin: 20px;
    background-color: white;
    justify-content: center;
    width: 70%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: #000000;
}

#logo {
    display: block;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border-radius: 5px;
    width: 10%;
    position: absolute;
    top: 10px; /* Adjust as needed */
    left: 10px; /* Adjust as needed */
}

#stempelContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: #f3f3f3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    display: none;
}

#stempelInfo {
    display: flex;
    justify-content: center;
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: #000000;
    font-size: 1.5em;
    text-align: left;
    margin-bottom: 20px;
    line-height: 2em;
}

#timestampButton {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    color: #fff;
    background: linear-gradient(to right, #e30609, #645d5d);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2em;
    width: 100%;
}

#timestampButton:hover {
    background: linear-gradient(to right, rgba(153, 153, 153, 0.71), #e30609);
}

.impressum-link {
    color: grey;
    font-size: 0.8em;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.infoText {
    color: #333; /* Subtle color */
    padding: 10px 20px; /* Space around the text */
    border: 1px solid #ddd; /* Border to make the element stand out */
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
    margin: 10px; /* Space between this element and the next one */
    background-color: lightgrey;
    border-radius: 5px;
    width: 80%;
    /*display: none;*/
    /*justify-content: center;*/
    text-align: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid grey;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}