/*
    AspergerMedia Login.css
    BMP
*/

font-face {
    font-family: Century-Gothic;
    src: url("/webfonts/CenturyGothic.ttf");
}

@font-face {
    font-family: Century-Gothic;
    src: url("/webfonts/CenturyGothicBold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: Open Sans;
    src: url("/webfonts/OpenSans.ttf");
}

/*html {*/
/*    color-scheme: light dark;*/
/*}*/

html, body{
    margin: 0;
    height: 100%;
    width: 100%;
}

body{
    display: flex;
    flex-direction: row;
    font-family: system-ui;
    font-size: 1.25rem;
    line-height: 1.5;
}

body section#impressum{
    width: 65%;
    height: 100%;
    background-color: #3100bd;
}

body section#impressum #logo{
    position: relative;
    top: 40%;
    width: 280px;
    height: 80px;
    background: url("/img/aspergermedia.webp") no-repeat no-repeat center;
    background-size: contain;
    margin: 0 auto;
}

body section#impressum #title{
    position: relative;
    top: 45%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Century-Gothic', sans-serif;
    font-size: 16pt;
    color: #fff;
    
}

body section#impressum #subTitle{
    position: relative;
    top: 45%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 14pt;
    color: #fff;
    
}

body section#loginForm{
    position: relative;
    width: 35%;
    background-color: #ccc;
}

body section #loginFormAlert{
    position: relative;
    top: 25%;
    width: 90%;
    margin: 0 auto;
    display: block;
}

body section#loginForm #loginFormAlert .alert{
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 0;
    padding: 10px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    font-family: 'Open Sans', sans-serif;
}

body section#loginForm #loginFormAlert .alert-danger{
    border-left: 5px solid #953b39;
    color: #fff;
    background-color: #c26565;
    text-shadow: none;
}

body section#loginForm #loginFormActual{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
}

body section#loginForm #loginFormActual #loginFormTitle{
    font-family: 'Century-Gothic', sans-serif;
    font-size: 12pt;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}

body section#loginForm #loginFormActual form{
    width: 100%;
}

body section#loginForm #loginFormActual form input[type=text],
body section#loginForm #loginFormActual form input[type=password]{
    width: 95%;
}

body section#loginForm #loginFormActual form input[type=submit]{
    width: 100%;
    background-color: #3100bd;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    border-radius: 10px;
}

