@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #289560; 
    font-family:'Open Sans', sans-serif;
}

.container{
    max-width: 1000px;
    width: 100%;
    background: #f7f7f7;
    padding: 50px 50px;
    border-radius: 25px;
}

.container form .eingabe-felder{
    display: flex;
    justify-content: space-between;
    margin: 20px 0 12px 0;
}

#links{
    width:100%;
    padding-right: 30px;
    display:inline-block;
}

#rechts{
    width:100%;
    padding-left: 30px;
    display:inline-block;
}


.container .titel{
    font-size: 30px;
    font-weight: 600;
}

.box1{
    
    margin-bottom: 40px;
    width:100%;
    color:#717171;
    font-size:16px;
}
#name{
    position:relative;
    line-height: 40px;
    padding: 0 22px;
    font-size:16px;
    float:right;    
}

.box2{
    
    margin-bottom: 40px;
    width:100%;
    color:#717171;
    font-size:16px;   
}
#vorname{
    position:relative;
    line-height: 40px;
    padding: 0 22px;
    font-size:16px;
    float:right;
}

.box3{
    
    margin-bottom: 40px;
    width:100%;
    color:#717171;
    font-size:16px;   
}
#email{
    position:relative;
    line-height: 40px;
    padding: 0 22px;
    font-size:16px;
    float:right;
}

.box4{
    
    margin-bottom: 40px;
    width:100%;
    color:#717171;
    font-size:16px;   
}
#telefon{
    position:relative;
    line-height: 40px;
    padding: 0 22px;
    font-size:16px;
    float:right;
}

.box5{
    margin-bottom: 40px;
    width:100%;
    color:#717171;
    font-size:16px;   
}
#radio{
    position:relative;
    font-size:40px;
    margin-left: 40px;
}

.box6{
    margin-bottom: 40px;
    width:100%;
    color:#717171;
    font-size:16px;
}
#problem{
    position:relative;
    line-height: 40px;
    padding: 0px;
    font-size:16px;
    float:right; 
}
select{
    cursor:pointer;
    height:40px;
    text-align:center;
    color:#717171;
}

.box7{
    margin-bottom: 40px;
    width:100%;
    color:#717171;
    font-size:16px;   
    line-height: 22px;
}

#upload input{
    position:relative;
    line-height: 40px;
    font-size:16px;
    float:right;
}

input[type="file"]{
    opacity: 0;
    z-index: -1;
    position: absolute;
    top: -1px;
    left: 0;
    width: 0.1px;
    height: 0.1px;
    user-select: none;
}

label[for="upload"]{
    background: #ffffff;
    padding: 0px 10px 20px 10px;
    color: #717171;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid;
}

label[for="upload"]:hover{
    background: #ebe9e9;
}

.box8{
    margin-bottom: 30px;
    width:100%;
    color:#717171;
    font-size:16px;   
}

#anmerkung{
    position:relative;
    left: 0px;
    line-height: 21px;
    width:100%;
    padding: 0 5px;
    font-size:16px;
    color:#717171;
}

.box9{
    margin-bottom: 30px;
    width:100%;
    color:#155195;
    font-size:16px;   
}
#submit{
    width:100%;
    background:#155195;
    color:#ffffff;
    height: 40px;
    border-radius: 25px;
    border:none;
    cursor:pointer;

}
#submit:hover{
    background-color: #4c81bd;
}


@media screen and (max-width: 1026px) {
    body{
        padding: 0;
        margin: 0;
    }
    .container{
        max-width: 95%;
        padding:40px;
    }
    .container form .eingabe-felder{
        flex-direction:column;
        margin: 0px;
    }
    #links{
        width:50%;
        padding-left: 0px;
    }
    #rechts{
        width: 50%;
        padding-left: 0px;
    }

    #name{
        position:absolute;
        margin-left:50px;
        padding: 0 22px;
    }
    
    #vorname{
        position:absolute;
        margin-left:26px;
        padding: 0 22px;
    }
    
    #email{
        position:absolute;
        margin-left:50px;
        padding: 0 22px;
    }
    
    #telefon{
        position:absolute;
        margin-left:40px;
        padding: 0 22px;
    }
    
    
    #problem{
        position:absolute;
        line-height: 40px;
        margin-left: 30px;
        font-size:16px;
        float:right; 
    }
    .box8{
        margin-bottom: 130px;
    }
    #anmerkung{
        position:absolute;
        width:80%;
        margin-left:10%;
        
    }

}