/* Large screens */

body {
    display: flex;
    flex-flow: nowrap column;
    flex: 1;
}

.toolbar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    min-height: 64px;
    background-color: rgb(1, 87, 155);
    color: rgba(255, 255, 255, 0.87);
    margin-bottom:4px;
}

.toolbar .logo {
    max-height: 64px;
    max-width: 220px;
    padding: 4px;
}

.toolbar .logo-mini {
    max-height: 56px;
    padding: 4px;
    display: none;
}

.toolbar .title-container {
    display: flex;
    justify-content: center;
    text-align: center;
}

.toolbar .title-container .title-large {
    display: flex;
    flex: 1;
}

.toolbar .title-container .title-mini {
    display: none;
}

.login-form-container {
    background-color: #efefef;
    display: flex;
    flex: 1;
    flex-flow: nowrap column;
    align-items: center;
    justify-content: center;
}

.text-error {
    color: red;
    text-align: center;
}

.text-success {
    color: green;
    text-align: center;
}

/* Medium screens */
@media all and (max-width: 800px) {
    .toolbar .logo {
        display: none;
    }

    .toolbar .logo-mini {
        display: block;
    }

    .toolbar .title-container .title-large {
        display: none;
    }

    .toolbar .title-container .title-mini {
        display: flex;
        flex: 1;
    }
}

/* Small screens */
@media all and (max-width: 500px) {
    .toolbar .logo {
        display: none;
    }

    .toolbar .logo-mini {
        display: block;
    }

    .toolbar .title-container .title-large {
        display: none;
    }

    .toolbar .title-container .title-mini {
        display: flex;
        flex: 1;
    }
}