body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.3;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100vh;
    overflow: hidden;
}

main {
    width: 400px;
}

.authWarn {
    background-color: red;
    padding: 15px;
    border-radius: 3px;
    color: white;

    margin-top: 15px;
}

.login {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    padding: 15px;
    border-radius: 3px;
    margin: 15px 0;
    border: 2px solid #EEE;

    cursor: pointer;
    user-select: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

.login img {
    margin-right: 15px;
}

h1 {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-flow: row nowrap;
}

.tag {
    display: none;
    background-color: lightcoral;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    vertical-align: middle;
    padding: 5px;
    border-radius: 3px;
}