h2{
    text-align: center;
}

body{
    font-family: Amiko,Arial;
    width: 900px;
}
/* Flexbox for Form*/
div#container {
    border: 1px solid #00133D;
    padding: 0 20px;
    width: 900px;
    color:rgba(67,67,67,1);
}
form > div{
    display: flex;
    width: 100%;
    padding: 5px 0;

}
div.text{
    height: 40px;
}
div.textarea{
    height: 60px;
}
form > div > label{
    width: 270px;
    align-self: center;
}
div > input, textarea{
    width: 500px;
    background-color: rgba(204, 204, 204, 1);
    border-style: solid;
    border-width: 2px;
    padding: 5px 10px;
    border-color: rgba(131, 117, 117, 1);
}

div.inner{
    display: block;
    height: auto;
}
div.inner input, label{
    width: auto;
}
div.checkboxes{
    display:flex;
    justify-content: flex-start;
    align-items: center;
    height:auto;
    margin: 25px 0;
}
.checkboxes > label{
    align-self: start;
}
input[type="number"]{
    width: 100px;
}
input{
    padding: 5px 10px;
    font-size: 14px;
}
.dsgvo{
    display: block;
    margin: 20px 0;
}
#dsgvo_confirmation{
    align-self: center;
    height: 30px;
}
input[type="submit"]{
    font-size:17px;
    color:rgba(29,134,176,1);
    border: none;
    background-color:rgba(29, 134, 176, 0.09);
    font-weight: bold;
    width: 250px;
    height: 50px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: auto;
}
input[type="submit"]:hover{
    color:white;
    background-color: #00133D;
}
input[disabled], textarea[disabled]{
    color:black;
}
#container form button[type="submit"]{
    word-break: break-word;
    font-size:17px !important;
    color:rgba(29,134,176,1) !important;
    border: none !important;
    background-color:rgba(29, 134, 176, 0.09) !important;
    font-weight: bold !important;
    width: 275px !important;
    height: 80px !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 3px !important;
    margin: auto !important;
    line-height: 1.7em;
}
#container form button[type="submit"]:hover{
    color:white !important;
    background-color: #00133D !important;
}
input[type="checkbox"]{
    background-color:transparent;
}
.title_div{
    width: 550px;
}
.title_div label{
    width: inherit;
}
form div.no_bottom_margin{
    margin-bottom: 0;
}