        .form-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        .form-step {
            display: none;
        }
        .form-step.active {
            display: block;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            font-size: 16px;
        }
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .checkbox-group label {
            font-weight: 400;
            display: flex;
            align-items: center;
        }
        .checkbox-group input {
            margin-right: 5px;
        }
        .navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        .navigation button {
            display: inline-block;
            border-radius: 30px;
            padding: 15px 40px;
            background-color: var(--bgcolor);
            color: var(--whitec);
            font-size: 16px;
            font-weight: 700;
            border: none;
            text-transform: uppercase;
            cursor: pointer;
            transition: .5s;
        }
        .navigation button:hover {
            background-color: var(--titlecolor);
        }
        .navigation button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        #success-message {
            display: none;
            color: var(--bgcolor);
            font-weight: bold;
            margin-top: 10px;
            text-align: center;
        }
.tns_input select {
    height: 55px;
    width: 100%;
    border-radius: 5px;
    padding: 0 15px;
    border: 1px solid #dddddd;
    background-color: var(--whitec);
    color: var(--paracolor);
    font-size: 16px;
    font-family: "Barlow Semi Condensed", sans-serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: .5s;
    position: relative;
    cursor: pointer;
}

.tns_input select:focus {
    border-color: var(--bgcolor);
    box-shadow: 0 0 5px rgba(0, 134, 66, 0.3);
}

.tns_input select option {
    background-color: var(--whitec);
    color: var(--paracolor);
    font-size: 16px;
    padding: 10px;
}

.tns_input select option:hover {
    background-color: var(--bgcolor);
    color: var(--whitec);
}

.tns_input .select-wrapper {
    position: relative;
    width: 100%;
}

.tns_input .select-wrapper::after {
    content: '\eaca'; /* Icofont arrow-down */
    font-family: IcoFont;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--paracolor);
    font-size: 18px;
    pointer-events: none;
}
.tns_input .custom-checkbox {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
}

.tns_input .custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tns_input .custom-checkbox .checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: var(--whitec);
    border: 1px solid #dddddd;
    border-radius: 3px;
    transition: .5s;
}

.tns_input .custom-checkbox input:checked ~ .checkmark {
    background-color: var(--bgcolor);
    border-color: var(--bgcolor);
}

.tns_input .custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--whitec);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tns_input .custom-checkbox input:checked ~ .checkmark::after {
    display: block;
}

.tns_input .custom-checkbox label {
    font-size: 16px;
    color: var(--paracolor);
    font-family: "Barlow Semi Condensed", sans-serif;
    margin: 0;
} 
       
.awb-field { margin-bottom: 10px; }

.awb-field input { padding: 8px; width: 300px; }

.add-awb-btn { 
     background-color: #00863D; 
     color: white; 
     padding: 8px 16px; 
     border: none; 
     cursor: pointer; 
     margin-top: 10px; 
}

.add-awb-btn:hover { background-color: #000000; }

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox .checkbox-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #dddddd;
    background-color: #fff;
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-indicator::after {
    content: '\2713'; /* Checkmark symbol */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #000;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
}

.custom-checkbox:hover .checkbox-indicator {
    border-color: #999;
}

.custom-checkbox input[type="checkbox"]:focus + .checkbox-indicator {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    border: 1px solid #dddddd;
}

#success-message {
    display: none;
    color: #28a745; /* Green color for success */
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

input:focus, textarea:focus, select:focus, button:focus,
input:active, textarea:active, select:active, button:active {
    border: 1px solid #dddddd !important;
    outline: none; /* Prevent outline from appearing */
}
input[type="checkbox"] {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
        border: 1px solid #dddddd !important;
        outline: none;
    }
    label {
        pointer-events: auto;
        cursor: pointer;
    }
    input[type="checkbox"]:focus,
    input[type="checkbox"]:active {
        border: 1px solid #dddddd !important;
        outline: none;
    }
    .form-container, form, div {
        pointer-events: auto;
    }
.custom-checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }
    .custom-checkbox .checkbox-indicator {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 1px solid #dddddd;
        background-color: #fff;
        position: relative;
        vertical-align: middle;
        margin-right: 8px;
        cursor: pointer;
    }
    .custom-checkbox input[type="checkbox"]:checked + .checkbox-indicator::after {
        content: '\2713';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        color: #000;
    }
    .custom-checkbox {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        pointer-events: auto;
    }
    .custom-checkbox:hover .checkbox-indicator {
        border-color: #999;
    }
    .custom-checkbox input[type="checkbox"]:focus + .checkbox-indicator {
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
        border: 1px solid #dddddd;
    }
	input[type="checkbox"] {
		border: 1px solid #dddddd;
	}	
@media (max-width: 576px) {
    .txbdsvflex .col-12 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}		