/* Generic styles */
* {
    box-sizing: border-box
}

div.inline { display: inline-block; }

p.error {
    color: red;
    padding: 3px 20px;
}

.align-middle {
    text-align: center !important;
    vertical-align: middle !important;
}

[v-cloak] {
  display: none;
}

button {cursor: pointer;}

/* Header */

header {
    display: flex !important;
    padding: 4vh 2vw;
}

.logo {
    height: 50px !important;
}

header .login {
    text-align: right;
    margin-left: auto;
}

body.test {
    background: url('/static/img/test_background.png') repeat;
}

body.dev {
    background: url('/static/img/dev_background.png') repeat;
}

body.local {
    background: url('/static/img/local_background.png') repeat;
}

h1 {
    margin-bottom: 5vh;
    margin-left: 50px;
}

