
.logincontroller {
    display: none;
    position: relative;
    opacity: 80%;
    flex-direction:column;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.logindialog {
    width: 40vw;
    height: 40vh;
    background-color: rgb(22, 22, 22);
    border-radius: 2vw;
    border: 1px solid;
    padding: 5vh;
}

.login_head {
    display: flex;
    height: 5vh;
    width: 100%;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    font-size: 3vh;
    margin-bottom: 3vh;
} 

.login_enter {
    display: flex;
    height: 15vh;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#login_wait {
    display: flex;
    height: 10vh;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: none;
}

.login_input {
    height: 5vh;
    width: 100%;
    font-size: 3vh;
    color: white;
    background-color: transparent;
    border: 0;
    outline: 1.5px solid;
    outline-color: rgb(120, 120, 120);
    padding: 1.5vh;
    margin-bottom: 1vh;
}

.login_input:hover {
    outline-color: yellow;
}

.login_input:focus {
    outline-color: blue;
}

.login_btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.login_go {
    width: 30%;
    height: 5vh;
    background-color: gray;
    color: white;
    border-radius: 2.5vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 2vh;
}

.login_go_green {
    background-color: green;
    cursor: pointer;
}

.login_go_red {
    background-color: red;
    cursor: pointer;
}

.login_label {
    position: absolute;
    margin-top: -6vh;
    color: gray;
}

#login_2 {
    display: none;
}

#login_2fa {
    display: none;
}

.login_anweisung {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 2vh;
    text-align: center;
}

