/*
 * Form
 */

.form {
    width: 60%;
}

@media (max-width: 1280px) {
    .form {
        display: flex;
        flex-flow: column wrap;
        width: 100%
    }
}

    .form-group {
        display: flex;
        flex-flow: column wrap;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .form-group p label {
        display: block;
        margin-top: 20px;
        font-size: 18px;
        font-weight: bold;
        line-height: 20px;
    }

    .form-group input[type=radio] {
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    @media (max-width: 1280px) {
        .form-group {
            justify-content: center;
            align-items: center;
        }
    }

    @media (max-width: 1280px) {
        .form .form-group .button--fullwidth {
            align-self: center;
        }
    }

        .form p {
            flex: 1;
            width: 100%;
            margin-bottom: 20px;
        }

        @media (max-width: 1280px) {
            .form p {
                flex: 1;
            }
        }

        .form ul,
        .form li {
            padding: 0;
            margin: 0;
            list-style: none;
            text-align: center;
            width: 100%;
        }

        .form-group li {
            height: 15px;
        }

        .form .form-control {
            display: block;
            width: 80%;
            line-height: 30px;
            padding: 0 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            border: 2px solid;
            border-radius: 20px;
            border-color: var(--my_light_blue);
            color: #1b1b1b;
        }

        .form textarea.form-control {
            height: 150px;
        }

        .form .errorlist {
            font-size: 1.6rem;
            font-weight: bold;
            color: red;
            margin-bottom: 16px;
            padding-left: 16px;
        }
