@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: "Open Sans","sans-serif";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1 {
    font-family: "Roboto";
    font-size: 48px;
    font-weight: 900;
    color: #f1f1f1;
    letter-spacing: -2px;
    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");
}
.opacity {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.overlay {
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: url("/assets/img/overlay.png") repeat;
}
.logo {
    position: fixed;
    top: 30px;
    left: 30px;
    width: 260px;
    z-index: 4;
}
.login {
    position: fixed;
    width: 500px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 20;
    -webkit-box-shadow: 0px 6px 10px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0px 6px 10px rgba(50, 50, 50, 0.5);
    box-shadow: 0px 6px 10px rgba(50, 50, 50, 0.5);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: 5;
    text-align: center;
    padding: 30px;
    background-color: rgba(0,0,0,0.65);
}
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: 300px;
    margin: 0 0 15px 0;
    padding: 16px 10px;
    border: 2px solid #dddddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 20px;
    font-weight: normal;
    color: #555555;
}
input:focus {
    border: 2px solid #3CCCE0;
    outline: none;
}
button {
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: none;
    display: inline-block;
    margin: 6px 0;
    padding: 18px 44px;
    line-height: 16px;
    background-color: #0288d1;
    font-size: 24px;
    font-weight: 900;
    font-family: "Roboto";
    letter-spacing: -1px;
    color: #ededed;
}
button:hover {
    background-color: #3CCCE0;
    color: #ffffff;
}
button:active {
    background-color: #3CCCE0;
    color: #ffffff;
}
