body {
    margin: 0;
    background-color: #eee;
}

.loginpage {
    display: flex;
    flex-direction: column;
    width:100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.loginform {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    padding: 1em;
    background-color: white;
    border-radius: 4px;
    box-shadow: 3px 3px 3px #aaa;
    align-items: center;
}

.incorrect {
    color: red;
}

.codes {
    position: absolute;
    bottom:-3.7em;
    left:0;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.code {
    position: relative;
    padding: 0.8em 1em;
    background-color: white;
    border-radius: 4px;
    box-shadow: 3px 3px 3px #aaa;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.code.faded {
    background-color: #eaeaea;
    color: #8c8c8c;
}

.bar {
    height: 0.2em;
    position: absolute;
    top: 0;
    right: 0;
    background: #0f0;
    transition: width 1s ease, background 1s ease-in-out;
}

img {
    width: 10em;
    margin: 1em;
}

button {
    width: 100%;
}


