


@font-face {
    font-family: 'Ubuntu Regular';
    src: url('../font/Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Ubuntu Bold';
    src: url('../font/Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }


  body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    color: #FFFFFF;
    font-family: Ubuntu Regular;
    display: flex;
    justify-content: space-between;
    background-image: url("../img/Hintergrund-dunkel_Zeichenfläche\ 1\ Kopie.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.left{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.img-container{
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
img{
    width: 70%;
}

.login-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input{
    width: 300px;
    height: 40px;
    font-size: 20px;
    background-color: #141414;
    border: solid 2px #FF6B05;
    color: #FFFFFF;
    font-family: 'Ubuntu Regular';
}

input:focus{
    background-color: rgba(255, 255, 255, 0);
    border: solid 2px #FF6B05;
    color: #FFFFFF;
    font-family: 'Ubuntu Regular';
}


Button{
    height: 40px;
    cursor: pointer;
    background-color: #FF6B05;
    color: #141414;
    font-size: 20px;
    font-family: 'Ubuntu Regular';
    border: solid 1px #FF6B05;
}

Button:hover{
    height: 40px;
    cursor: pointer;
    background-color: #fd9148;
    color: #141414;
    font-size: 20px;
    font-family: 'Ubuntu Regular';
    border: solid 1px #FFFFFF;
}


/*.img-container{

}*/

@media screen and (max-width:500px) {


    body{
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        color: #FFFFFF;
        font-family: Ubuntu Regular;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        background-image: url("../img/Hintergrund-dunkel_Zeichenfläche\ 1\ Kopie.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    
    
    .left{
        width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .login-form{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    


    

    .img-container{
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    img{
        width: 70%;
    }
    
}



