.form-control {
            border-top: none;
            border-left: none;
            border-right: none;
            border-radius: 0;
            padding-left: 0;
            box-shadow: none;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: #212529;
        }

        .form-label {
            color: #6c757d;
            font-weight: normal;
            font-size: 13px;
        }

        h1 {

            font-weight: 600;
        }

        .form-select {
            border-top: none;
            border-left: none;
            border-right: none;
            border-radius: 0;
            padding-left: 10px;
            padding-bottom: 14px;
            font-size: 10px;
        }

        option {
            padding-left: 20px;
        }

        .form-select:focus {
            box-shadow: none;
            border-color: #212529;
        }

      .btn-primary {
            background-color: #04AA6D;
            color: #ffff;
            border: none;
            font-size: 18px;
            font-weight: 600;
            padding: 8px 60px;
       
        }

        .btn-primary:hover {
            background-color: #04AA6D;
            color: #ffff;
            box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);

        }

        .date-input-wrapper {
            position: relative;
        }

        .date-input-wrapper .calendar-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            pointer-events: auto;
            z-index: 2;
        }

        .asterisk {
            color: #dc3545;
        }

        /* Datepicker customization */
        .datepicker {
            border-radius: 0;
            padding: 10px;
            font-size: 10px;
        }

        .datepicker table tr td.active.active,
        .datepicker table tr td.active.highlighted.active,
        .datepicker table tr td.active.highlighted:active,
        .datepicker table tr td.active:active {
            background-color: #212529;
            border-color: #212529;
        }

        textarea.form-control {
            min-height: 100px;
            font-size: 14px;
        }