/*-- honeypot feld ausblenden --*/


#middlename_container,
#middlename {
    display: none;
}

#middlename {
    display: none;
}

fieldset, legend, input, select, textarea{
    box-sizing: border-box;
}
p.error {
    background-color: red;
    font-weight: 700;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

legend.form {
    margin-top: 20;
    padding: 0;
    color: black;
}

fieldset.form {
    margin: 0 auto;
    width: auto;
}

label,
legend.label {
    clear: left;
    float: left;
    width: 100%;
    font-size: 16px;
}

input,
select,
textarea {
    width: 100%;
    float: left;
    display: block;
    margin: 3px 0 8px;
    padding: 2px;
    border: 1px solid black;
    font-size: 14px;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover {
    border: 2px solid rgb(185, 213, 130);
    outline: none;
}

input[type="submit"],
input[type="reset"] {
    float: left;
    display: block;
    width: 100px;
    margin: 15px 0 ;
    padding: 5px;
    clear: left;
    border-radius: 12px;
    background-color: green;
    color: white;
    border: 0px solid black;
}

input[type="reset"] {
    clear: left;
}

label.error,
legend.error,
p.error {
    color: black;
}
label.error+input,
label.error+textarea {
    border-color: red;
}

@media only screen and (min-width: 701px) {

label,
legend.label {
    clear: left;
    float: left;
    width: 200px;
    font-size: 18px;
}

 input[type="submit"],
input[type="reset"] {
margin-left: 200px;
}


    .fieldset {
        width: 1200px;
    }

    fieldset.form {
        width: 900px;
    }

    input,
    select,
    textarea {
        width: 300px;
    }
}

@media screen and (min-width: 1521px) {

    legend.form {
    font-size: 20px;
}

    .fieldset {
        width: 2000px;
    }

    fieldset.form {
        width: 1500px;
    }

    label,
    legend.label {
        width: 150px;
        font-size: 19px;
    }

    input,
    select,
    textarea {
        width: 400px;
    }

     input[type="submit"],
input[type="reset"] {
margin-left: 200px;
}
}
