body {
    font-family: Open Sans, sans-serif;
    background-color: #F3F6F8;
    margin: 0px;
}

.header {
    background-color: #05446c;
    color: white;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.header-version {
    display: flex;
    justify-content: left !important;
    align-items: start;
    font-size: 10px;
}

.header img {
    width: 200px;
    height: auto;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    font-size: 14px;
    align-items: center;
}

.buttonPanel {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.buttonPanel button {
    margin-right: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    width: 150px;
}

.buttonPanel button:hover {
    font-weight: 600;
    background-color: #05446c;
    opacity: 1;
}

button {
    background-color: #05446c;
    opacity: 0.9;
    color: white;
    height: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 6px;
    border-radius: 50px;
    border: 0px;
    font-weight: 500;
}

.errorContainer {
    margin-top: 10px;
    /* Add margin to push the error message down */
    text-align: center;
    /* Center-align the error message */
}

.errorText {
    display: block;
    /* Display as block-level element */
    color: red;
    /* Set the text color to red */
    font-weight: bold;
    /* Set the font weight to bold */
    font-size: 14px;
    /* Set the font size */
    /* Add any other styling properties as desired */
}