.kontakt-arranger {
    display: flex;
    flex-wrap: wrap;

    div {
        margin-left: 2rem;
        margin-right: 2rem;
        flex: 1;
    }
}

form {
    margin-top: 1rem;

    .input-unit:first-of-type {
        margin-top: 0;
    }

    .input-wrapper {
        margin: auto;
        display: flex;
        flex-direction: column;
        max-width: fit-content;
        justify-self: center;
        justify-content: center;
        align-items: center;
    }

    .input-unit {
        margin-top: 1.8rem;
        max-width: fit-content;
        justify-self: center;
    }

    label {
        font-weight: bold;
        display: block;
        margin-bottom: 1rem;
        text-align: left;
        max-width: 20rem;
        /* justify-self: left; */
    }

    .input-field,
    .text-area {
        border: solid 1px rgb(6, 103, 0);
        border-radius: 100rem;
        border-radius: 7px;
        border-width: 0.05rem;
        padding: 0.25rem;
        max-width: calc(100vw - 4rem);
        display: block;
        font-size: 1rem;
        margin-left: 1ch;
        width: 20rem;
    }

    .input-field:focus,
    .text-area:focus {
        outline-color: rgb(6, 103, 0);
        /* border:solid 3px rgb(6,103,0); */
    }

    .text-area {
        max-height: 20rem;
        min-width: 20rem;
        width: 30rem;
        max-width: 40rem;
    }

    @media only screen and (max-width: 36rem) {
        .text-area {
            min-width: calc(100vw - 4rem);
            max-width: calc(100vw - 4rem);
        }
    }

    textarea {
        font-family: Arial;
        padding: 0.2rem;
        min-height: 11.5rem;
        font-size: 1rem;
    }

    p {
        margin: 2rem 0;
        -webkit-margin-collapse: collapse;
    }

    .i-agree {
        display: flex;
        flex-wrap: nowrap;
        margin: 2rem;
        justify-self: center;
        justify-content: center;

        input,
        label {
            display: inline-block;
            max-width: fit-content;
            margin: 0;
            align-self: center;
        }

        input {
            accent-color: rgb(6 103 0);
            margin-right: 0.5rem;
            width: 2rem;
            height: 1.5rem;
        }

        input:hover {
            cursor: pointer;
        }
    }

    .sending-button {
        padding: .75rem 1.2rem;
        font-size: 1.2rem;
        background-color: white;
        border: rgb(6, 103, 0) solid 2px;
        color: rgb(6, 103, 0);
        border-radius: 10rem;
        cursor: pointer;
        justify-self: center;
        transition: linear .3s;


        &:hover {
            background-color: rgb(6, 103, 0);
            color: white;
            transition: linear .3s;
            box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.225);
            ;
        }
    }
}