﻿#FormPage {
}

    #FormPage .TopPanel {
        background-color: #fff;
        padding: calc(var(--spacing) * 2 ) 0 calc(var(--spacing) * 5 ) 0;
    }

    #FormPage .FormTopTitle {
        font-size: 24px;
    }

    #FormPage .FormWarning {
        font-size: 14px;
    }

    #FormPage .CheckBoxList {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 24px;
    }

        #FormPage .CheckBoxList .form-check {
            display: inline-block;
        }

        #FormPage .CheckBoxList input,
        #FormPage .CheckBoxList label {
            cursor: pointer;
        }

        #FormPage .CheckBoxList .Other {
            display: inline-block;
            width: 50%;
            border: 0;
            border-bottom: 1px solid;
            background-color: unset;
            height: 20px;
        }

            #FormPage .CheckBoxList .Other:focus {
                outline: none;
            }


