﻿:root {
    --bitblue: #003b66;
    --bitblue_light: #265a80;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    overflow: hidden;
    height: 100%;
}


.bit_login_root {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    overflow-y: auto;
}

/* #################################################### Linke Seite Seite */

/* Linke Seite  - Bild */
.bit_login_left {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}


.bit_login_left_panel_ownImage {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* Login Text auf der linken Seite */
.bit_login_left_text {
    color: #000000;
    font-size: 40px;
    padding: 40px;
}

/* Login Bild auf der linken Seite */
.bit_login_left_img {
    width: 90%;
    margin-bottom: 80px;
    max-height: 70%;
}

.bit_login_left_img_own {
    max-width: 90% !important;
    height: auto !important;
    margin-bottom: 80px !important;
    max-height: 70% !important;
}

/* #################################################### Rechte Seite */
/* Rechte Seite - Formular */
.bit_login_right {
    display: flex;
    width: 50%;
    height: 100%;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(229,235,239,1) 40%);
    margin: 0 auto;
}


/* Breite der Anmeldemaske */
.bit_login_form {
    width: 400px;
}

.bit_login_form_panel {
    width: 400px;
    border-radius: 20px;
    padding: 50px;
    background-color: #a4b8c8;
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}


.bit_login_input_container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: start;
}

.bit_login_input_header {
    color: black;
    margin-bottom: 2px;
    font-size: 16px;
}


.bit_login_input_panel {
    display: flex;
    width: 300px;
    height: 40px;
    align-items: center;
    justify-content: center;
    align-content: center;
    border-radius: 4px;
    color: #000000 !important;
    font-size: 14px;
    transition: 300ms;
    background-color: #e5ebef;
}

    .bit_login_input_panel:focus-within {
        box-shadow: 0 3px 3px rgba(0,0,0,0.075) inset,0 0 9px rgba(102,175,233,0.6) !important;
        transition: unset;
    }

.bit_login_input_panel_disabled {
    display: flex;
    width: 300px;
    height: 40px;
    align-items: center;
    justify-content: center;
    align-content: center;
    border-radius: 4px;
    color: gray !important;
    font-size: 14px;
    transition: 300ms;
    background-color: #e5ebef;
}

    .bit_login_input_panel_disabled:focus-within {
        box-shadow: 0 3px 3px rgba(0,0,0,0.075) inset,0 0 9px rgba(102,175,233,0.6) !important;
        transition: unset;
    }


/* Farbe ändern beim Hovern 
    .bit_login_right_input_panel:hover {
        background-color: gray !important;
        color: white !important;
    }

        .bit_login_right_input_panel:hover .bit_login_right_input {
            background-color: gray !important;
            color: white !important;
        }
         */

/* Textbox der Suche */
.bit_login_input {
    width: 266px !important;
    min-width: 266px !important;
    height: 30px !important;
    min-height: 30px !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0px !important;
    padding-left: 6px !important;
    font-size: 16px !important;
    transition: 300ms;
    color: #000000 !important;
    background-color: #e5ebef !important; /*var(--bitcolor-content-2)*/
    outline: none;
}

.bit_login_input_disabled {
    width: 266px !important;
    min-width: 266px !important;
    height: 30px !important;
    min-height: 30px !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0px !important;
    padding-left: 6px !important;
    font-size: 16px !important;
    transition: 300ms;
    color: gray !important;
    background-color: #e5ebef !important; /*var(--bitcolor-content-2)*/
    outline: none;
}

.bit_login_forgot_password_container {
    display: flex;
    justify-content: end;
}

/* Password vergessen  */
.bit_login_forgotPW {
    margin-top: 8px;
    display: flex;
    text-align: right;
    text-decoration: none;
    color: black !important;
    font-size: 14px !important;
    transition: 500ms;
    cursor: pointer;
    padding: 2px;
}

    .bit_login_forgotPW:hover {
        color: black !important;
    }

/* Login Button*/
.bit_login_button {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 4px;
    outline: none;
    font-size: 1.2rem;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
    border: none;
    background-color: var(--color-login);
    color: var(--color-loginfont);
}

    /* Als Gast anmelden*/
    .bit_login_button.guest {
        font-size: .8rem;
    }

    .bit_login_button:hover {
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        /*background: linear-radient(90deg, rgba(188,194,218,1) 0%, rgba(176,185,213,1) 20%, rgba(142,208,238,1) 40%, rgba(159,213,214,1) 60%, rgba(176,215,186,1) 80%, rgba(218,232,190,1) 100%);*/
    }

    .bit_login_button:focus-visible {
        outline: 2px solid var(--bitcolor-focus-blue) !important;
        transition: 0ms;
    }


.bit_login_pw_text {
    color: #000000;
    font-size: 14px;
}

.bit_login_invalidInput {
    color: #ff0000;
    font-size: 14px;
}

.bit_login_newPW {
    color: #000000;
    font-size: 18px;
    border-bottom: 3px solid #000000;
}

.bit_login_newPW_div {
    margin-bottom: 20px;
}



/* #################################################### Absolut */
/* Login Text bei schmalen Bildschirm */
.bit_login_right_text {
    color: black;
    font-size: 40px;
    padding: 40px;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 100;
    display: none;
}

/* Footer mit Visual Key */
.bit_login_footer {
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    bottom: 0;
    background-image: url("../../Images/LoginScreens/login-background-bottom.svg");
    background-size: cover;
    z-index: 100;
}

.bit_login_logo {
    position: fixed;
    right: 6px;
    bottom: 6px;
    width: 200px;
    z-index: 101;
}
/* #################################################### ENDE */


/* Responsive #######################################################################################*/





@media screen and (max-width: 950px) {

    .bit_login_left {
        display: none;
    }

    .bit_login_right {
        width: 100%;
        align-items: unset;
    }

    .bit_login_right_text {
        display: inline-block;
        position: unset;
    }

    .bit_login_footer {
        display: none;
    }

    .bit_login_logo {
        display: none;
    }
}

/* LOGOUT #######################################################################################*/

.bit_logout_root {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.bit_logout_content {
    z-index: 10;
}

.bit_logout_backgroundimage {
    position: fixed;
    width: 100%;
    max-height: 70%;
    z-index: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.bit_logout_backgroundimage_blur {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(15px);
}

.bit_logout_container {
    width: 400px;
    border-radius: 20px;
    padding: 50px;
    background-color: #a4b8c8;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.bit_logout_redtext {
    padding: 10px 20px;
    color: #bd2c00;
    text-align: center;
    font-size: 1.3rem;
    width: 300px;
    margin-bottom: 30px;
    font-weight: bold;
}

.bit_logout_otherusertext {
    padding: 10px 20px;
    color: var(--bitblue);
    text-align: center;
    font-size: 1.3rem;
    width: 300px;
    margin-bottom: 30px;
    font-weight: bold;
}

.bit_button_simple_logout {
    border-radius: 4px !important;
    border: 2px solid var(--bitblue) !important;
    background-color: var(--bitblue) !important;
    color: white !important;
    font-size: 1.1rem !important;
    box-shadow: none !important;
    transition: 500ms !important;
    padding: 10px 20px !important;
    cursor: pointer;
    text-decoration: none !important;
    margin: 0px;
    width: 300px;
    margin-bottom: 10px;
}

    .bit_button_simple_logout:hover {
        background-color: var(--bitblue_light) !important;
        color: white !important;
        border: 2px solid var(--bitblue_light) !important;
    }

/*
    .bit_button_simple:focus {
        border: 2px solid var(--bitcolor-highlight) !important;
        transition: 0ms !important;
        outline-color: var(--bitcolor-highlight) !important;
    }

    .bit_button_simple:focus-visible {
        border: 2px solid var(--bitcolor-highlight) !important;
        transition: 0ms !important;
        outline-color: var(--bitcolor-highlight) !important;
    }
        */
/*
position: fixed;
right: 6px;
bottom: 6px;
width: 200px;
z-index: 101;
    */
