    body {
        font-family: Ek Mukta, sans-serif;
    }
    .header {
        color: #fff;
        text-align: left;
        background: black;
        padding: 8px 16px;
    }
    .footer {
        color: #fff;
        text-align: right;
        background: black;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 100%;
    }
    .content {
        padding: 12px 24px;
        min-height: 100vh;

        padding-bottom: 120px;
        box-sizing: border-box;
    }
    .headline {
        border-left: 5px solid #e76425;
        padding-left: 15px;
        font-size: 20px;
        font-family: Ek Mukta, sans-serif;
    }
    .square{
        padding-top: 20px;
        padding-left: 15px;
        padding-right: 5px;
    }
    .label{
        padding: 5px 15px;
    }
    .input {
        font: inherit;
        margin-left: 25px;
        background-color: rgb(255, 255, 255);
        border: 1px solid rgb(212, 212, 212);
        border-radius: .25rem;
        width: 200px;
        transition: border .1s linear,background-color .1s linear;
        display: inline-block;
        padding: 0 1rem 0 .75rem;
        line-height: 1.875rem;
        min-height: calc(1.875rem + (1px * 2));
    }
    .errMsg{
        display: inline-block;
        margin-left: 25px;
        color:#ff0000;
    }
    .checkbox-input{
      display: none;
    }
    .checkbox-parts{
      padding-left: 20px;
      position:relative;
      margin-right: 20px;
    }
    .checkbox-parts::before{
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 15px;
      height: 15px;
      border: 1px solid #999;
      border-radius: 4px;
    }
    .checkbox-input:checked + .checkbox-parts::after{
      content: "";
      display: block;
      position: absolute;
      top: -5px;
      left: 5px;
      width: 7px;
      height: 14px;
      transform: rotate(40deg);
      border-bottom: 3px solid rgb(231, 100, 37);
      border-right: 3px solid rgb(231, 100, 37);
    }
    .cBtn{
        font: inherit;
        background: #929292;
        color: #ffffff!important;
        cursor: pointer;
        border-radius: 3px;
        border: none;
        display: inline-block;
        padding: 12px;
        line-height: 1;
        box-sizing: border-box;
        text-align: center;
        display: block;
        color: #fff!important;
        width: 160px;
        padding: 10px 20px;
        border-style: double;
        border-color: grey;
        margin:auto;
    }
    .cBtn:enabled{
        background-color: #ff6600;
    }
    .errorMessage {
        color: #464646;
        padding: 10px;
        margin: 5px;
        border-width: 1px;
        border-style: solid;
        border-radius: 5px;
        font-size: 13px;
        line-height: 18px;
        border-color: #ccc;
        background-color: #eee;
        opacity: 1;
        transition: opacity .2s ease-out;
        border-color: #f2a199;
        background-color: #fdedea;
    }
