        /* Space out content a bit */
        body {
            background-color: rgb(238, 238, 238);
            display: flex;
            justify-content: center;
            min-height: 100%;
            padding-top: 50px;
            padding-bottom: 40px;
            width: 100%;
            box-sizing: border-box;
        }

        form {
            margin-bottom: 25px;
        }

        /* Custom page header */
        .header {
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 25px;
        }

        .header h1 {
            margin: 25px 0;
            text-align: left;
            font-family: 'Helvetica Neue', Arial;
            font-size: 28px;
            font-weight: 700;
            color: #222;
        }

        .required-fields {
            text-align: left;
        }

        .required-fields span {
            color: #a94442;
            font-weight: bold;
        }

        .list-group-item label {
            font-weight: normal;
            margin-top: 17px;
        }

        .list-group-item label input[type="checkbox"] {
            margin-right: 4px;
        }

        .form-group span.required {
            position: absolute;
            top: 0;
            right: 0;
            font-size: 20px;
            color: #a94442;
            font-weight: bold;
            user-select: none;
        }

        label.error {
            color: #a94442;
            font-weight: bold;
            margin-top: 4px;
        }

        .form-actions {
            margin: 25px 0;
        }

        .form-control {
            margin-top: 6px;
            color: rgb(34, 34, 34);
            font-family: "Helvetica Neue", Arial;
            font-size: 16px;
            font-weight: 400;
            width: 100%;
            height: 50px;
            padding-left: 16px;
            border: 1px solid rgb(204, 204, 204);
            border-radius: 5px;
            box-sizing: border-box;
        }

        .panel-group .panel-title .closed-icon,
        .panel-group .panel-title .open-icon {
            margin-right: 0.5em;
            top: 2px;
        }

        .panel-group .panel-title a:hover,
        .panel-group .panel-title a:active {
            text-decoration: none;
        }

        .panel-group .panel-title a:hover .text,
        .panel-group .panel-title a:active .text {
            text-decoration: underline;
        }

        .panel-group .panel-title .closed-icon {
            display: none;
        }

        .panel-group.closed .panel-title .open-icon {
            display: none;
        }

        .panel-group.closed .panel-title .closed-icon {
            display: inline;
        }
        
        .container {
                height: fit-content;
                width: 575px;
                background-color: rgb(255, 255, 255);
                border: 1px solid rgb(204, 204, 204);
                border-radius: 10px;
                padding: 60px;
                max-width: 100%;
                box-sizing: border-box;
            }
        .pull-right {
          float: left!important;
        }
        
        .col-sm-3 {
          position: relative;
          min-height: 1px;
          padding-right: 15px;
          padding-left: 0px!important;
        }
        
        .btn-primary {
          font-family: "Helvetica Neue", Arial;
          font-size: 16px;
          font-weight: 400;
          color: rgb(255, 255, 255);
          background-color: rgb(168, 33, 49);
          border-radius: 5px;
          border: 0px solid rgb(34, 34, 34);
          height: 50px;
          width: auto;
          padding: 0px 15px;
          margin: 0px auto;
          cursor: pointer;
        }
        .btn-primary:hover {
                  color: rgb(255, 255, 255);
                  background-color: rgb(168, 33, 49);
        }
        .btn-primary:active {
                  color: rgb(255, 255, 255);
                  background-color: rgb(168, 33, 49) !important;
        }

        /* Custom page footer */
        .footer {
            padding-top: 18px;
            border-top: 1px solid #e5e5e5;
            margin: 0px;
        }

        /* Customize container */
        @media (min-width: 768px) {
            .container {
                max-width: 730px;
            }
            .col-sm-3 {
                width: 100%!important;
}
            .form-horizontal .control-label {
                padding-top: 7px;
                margin-bottom: 0;
                text-align: left;
}
        }