body {
    background-color:rgb(112, 112, 112);
    font-family: brandon-grotesque, sans-serif;
    font-size: 1.5em;
    margin: 40px;
    color:rgb(202, 202, 202)
}

    h1 {
    color: rgb(202, 202, 202);
    text-transform: uppercase;
}

    .img {
        margin-top: 20px;
        display: flex;
        justify-content: flex-end;
    }

    label {
        margin-right: 20px;
        vertical-align: middle;
    }

    .field {
        width: 200px;
        height: 30px;

    }

    .outer {
        display: flex;
        align-content: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 10px;

    }

    .outer-radio {
        display: flex;
        align-content: flex-start;
    }


    .inner-field {
        min-width: 100px;
        padding: 7px 7px 7px 0px;
        flex-grow: 1;
    }

    [type="radio"] {
        height: 30px;
        width: 30px;
        margin-right: 20px;
    }

    [type="checkbox"] {
        height: 25px;
        width: 25px;
        vertical-align: middle;
    }

    .inner-checkbox {
    
    }


    .button {
        position: relative;
        overflow: hidden;
        background: #ffed00;
        border: 0;
        display: inline-block;
        margin-bottom: 0.3em;
        border-radius: 4px;
        font-size: 1em;
        font-family: brandon-grotesque, sans-serif;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        padding: 0.4em 0.9em 0.1em;
        margin-right: 0;
        margin-left: 0;
        margin-top: 10px;
        cursor: pointer;
        transition: all .3s cubic-bezier(.25,.8,.25,1);
    }

    span.error {
        color: red;
        font-size: 80%;
    }

    .infotext {
        margin-top: 20px;
        margin-bottom: 10px;
    }