html, body {
    height: 100%;
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: absolute;
    z-index: -100;
    width: 100%;
    height: 100%;
}

.register-container {
    background-color: white;
    padding: 20px;
    align-content: center;
    width: 500px;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.errorlist {
    background-color: #ff7f7f;
    color: darkred;
    border: 2px solid red;
    border-radius: 5px;
    list-style-type: none;
    text-align: center;
    padding: 8px 0 8px 0;
}

.button-container {
    display: flex;
}

.register-button {
    flex: 1;
    border: none;
    background-color: rgb(198, 78, 36);
    color: white;

}

.register-button:hover {
    background-color: rgb(173, 61, 27);
    color: white;
}

.existing-account {
    color: gray;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.existing-account:link, .existing-account:visited, .existing-account:hover, .existing-account:active {
    color: darkblue;
}

.existing-account:hover {
    cursor: pointer;
}