@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-Italic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-SemiboldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Italic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-SemiboldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
html,body,table,tr,th,td,div,ul,ol,li,form,p,pre,a,img,h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
    border: none;
}
html,body {
    width: 100%;
    height: 100%;
    font-family: "Roboto", "Open Sans","sans-serif";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2 {
    font-weight: 900;
    line-height: 60px;
    font-size: 50px;
    display: block;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
h1 {
    color: #b5a6a6;
}
h2 {
    color: #ffffff;
    padding-bottom: 40px;
}
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    background-image: url("/assets/img/teaser.webp");
}
.logo {
    position: fixed;
    top: 30px;
    left: 30px;
    width: 260px;
    z-index: 4;
}
.container {
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}
.content {
    flex-grow: 1;
    min-height: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.centered {
    min-width: 340px;
    padding: 30px 50px;
    background-color: rgba(0,0,0,0.65);
}
.login-err {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
}
.form-wrapper {
    max-width: 400px;
    margin: 0 auto;
}
input[type=text] {
    transition: all ease-in-out .40s;
    -o-transition: all ease-in-out .40s;
    -webkit-transition: all ease-in-out .40s;
    -moz-transition: all ease-in-out .40s;
}
input {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 16px 10px;
    font-size: 18px;
    font-weight: normal;
    color: #222222;
    border: none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
}
button {
    width: 100%;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin: 0 0 30px 0;
    padding: 15px 0;
    border: none;
    background-color: #3a1969;
    color: #ffffff;
    line-height: 16px;
    font-size: 18px;
    font-weight: 500;
}
button:hover {
    background-color: #53289b;
}
