﻿body {
    
     
}
.fa-16{
    font-size:16px !important;
}
.bl-dis {
    text-align: right;
}
.btn-style {
    display: inline-block;
    color: #fff;
    background-color: #fa9300;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer; /* Makes the cursor a hand icon */
    border-radius: 5px; /* Optional: adds rounded corners */
}
/* Center and style the modal overlay */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    /* Style for modal content */
    .modal-content {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        max-width: 600px;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    /* Header */
        .modal-content h3 {
            margin-top: 0;
            text-align: center;
            border-bottom: 1px solid #fa9300;
            padding-bottom: 10px;
            padding-top: 10px;
            font-size: 22px;
            color: #fa9300;
        }

    /* Style for the form layout in two columns */
    .confirmation-form {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        font-weight:300;
    }
.required-star {
    color: red;
}
    .confirmation-form p {
        width: 48%; /* Display two fields per row */
        margin: 0;
    }

    /* Checkbox for declaration */
    .declaration {
        margin-top: 10px;
        text-align: center;
    }

    .declaration label {
        font-size: 14px;
    }

    /* Center buttons at the bottom */
    .modal-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
}
.declaration {
    display: flex;
    align-items: flex-start; /* Aligns checkbox and label text neatly */
    gap: 10px; /* Spacing between checkbox and label */
    margin-top: 10px;
    font-size: 14px;
}

    .declaration input[type="checkbox"] {
        margin-top: 4px; /* Centers checkbox with label text */
    }

    .declaration label {
        line-height: 1.5; /* Improves readability of text */
        display: inline-block;
        font-size: 14px;
    }

.declaration-text {
    display: block; /* Keeps the Hindi text on a new line */
    font-size: 13px;
    color: #555; /* A slightly lighter color for secondary text */
    margin-top: 5px;
}
/* Modal overlay to center the popup */
/*.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}*/

/* Modal container */
/*.modal-content {
    background-color: #fff;
    width: 80%;*/ /* Adjust width as needed */
    /*max-height: 80%;*/ /* Allow space for overflow */
    /*overflow-y: auto;*/ /* Enables scrolling if content overflows */
    /*padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}*/

