﻿body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: white;
    padding: 125px 50px 125px 50px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
}

    .container img {
        width: 300px;
    }

    .container h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .container p {
        color: #555;
    }

    .container input {
        width: 80%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
        text-align: center;
        font-size: 18px;
    }

    .container button {
        width: 80%;
        padding: 10px;
        margin: 10px;
        background-color: #007bff;
        border: none;
        color: white;
        border-radius: 5px;
        cursor: pointer;
        box-sizing: border-box;
        font-size: 16px;
        text-align: center;
    }

        .container button:hover {
            background-color: #0056b3;
        }

    .container .timeout {
        display: none;
        height: 100px;
        width: 80%;
        background-color: red;
        color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .container .timeout span {
        color: white;
    }

.apptitle {
    font-size: 40px;
    font-style: italic;
}

    .apptitle sup {
        font-size: 20px;
    }

.registered {
    display: none;
}

.notregistered {
    display: none;
    height: 100px;
    background-color: red;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
