body, html {
    margin: 0;
    padding: 0;
    border: none;
    height: 100%;
}
.form-container {
    background-color: #252525;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* 100% of the viewport height */
}
form {
    background-color: #252525;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login-text {
    background-color: #252525;
    text-align: right;
    color: white;
    font-family: monospace;
    font-size: 16px;
}
.login-text-messages {
    background-color: #252525;
    text-align: left;
    color: red;
    font-family: monospace;
    font-size: 16px;
    inline-block;width: 380px;
    word-wrap: break-word;
}
.registration-text {
    background-color: #252525;
    text-align: left;
    color: white;
    font-family: monospace;
    font-size: 14px;
    width: 380px;
}
.logo {
    text-align: left;
    margin-right: 5px;
    padding-bottom: 10px;
    background-color: #252525;
}
.logo-text {
    text-align: left;
    background-color: #252525;
    color: white;
    font-family: monospace;
    font-size: 24px;
}
.logo-edition-text {
    vertical-align: text-top;
    color: lightgrey;
    font-family: monospace;
    font-size: 14px;
    cursor: pointer;
}
.alert-info {
    background-color: #252525;
    color: lightblue;
}
.alert-success {
    background-color: #252525;
    color: lightgreen;
}
.alert-warning {
    background-color: #252525;
    color: orange;
}
.alert-danger {
    background-color: #252525;
    color: red;
}
