html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/*Registraion form*/
.registraionFrom .QRText {
    text-align: justify;
    font-size: 20px;
    padding-left: 60px;
}

.registraionFrom p {
    margin: 0;
    padding: 5px 0px;
}

.registraionFrom form {
    border: 1px solid rgb(138, 138, 138);
    box-shadow: 1px 3px 5px rgb(185, 185, 185);
    width: 50%;
}

.registraionFrom .heading {
    padding: 20px;
    background-color: #e35f14;
    text-align: center;
    font-size: 27px;
    color: white;
    font-weight: bolder;
}

.registraionFrom .mainForm {
    background-color: white;
    padding: 10px;
}

.registraionFrom .mainForm2 {
    padding: 10px;
}

.registraionFrom .formField {
    padding: 10px;
    outline: none;
    width: 100%;
    border: 0.5px solid rgb(214, 214, 214);
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgb(219, 219, 219);
    font-size: 15px;
  
}
.registraionFrom .form-control {
    padding: 9px;
    box-shadow: 1px 1px 3px rgb(219, 219, 219);
    border-right: 0px
}
.registraionFrom .input-group-text {
    padding: 9px;
    box-shadow: 1px 1px 3px rgb(219, 219, 219);
    border-radius: 0px 5px 5px 0px;
    border-left:0px;
} 

.nform {
    margin: 50px 0px 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select-div {
    width: 100%;
    padding: 10px;
    outline: none;
    border: 0.5px solid rgb(214, 214, 214);
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgb(219, 219, 219);
}

.btnSave {
    padding: 20px 0;
}

.saveBtn {
    background-color: #03045e;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    outline: none;
    width: 100% !important;
    box-shadow: 1px 1px 3px rgb(219, 219, 219);
    margin-top: 12px;

}

.footer {
    display: flex;
    padding: 10px 50px;
    background-color: #e35f14;
    width: 100%;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

    .footer a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
    }
@media (max-width:1024px) {
    .registraionFrom form {
        width: 75%;
    }
}
@media (max-width:992px) {
    .registraionFrom .QRText {
        padding-left: 0px;
        margin-top: 30px;
        text-align: justify;
        font-size: 22px
    }

    .registraionFrom form {
        width: 80%;
    }
}
@media (max-width:768px) {
    .registraionFrom .QRText {
        padding-left: 0px;
        margin-top: 30px;
        text-align: justify;
        font-size: 20px
    }

    .registraionFrom form {
        width: 75%;
    }
}
@media (max-width:576px) {
    .registraionFrom .QRText {
        padding-left: 0px;
        margin-top: 30px;
        text-align: justify;
        font-size: 20px
    }
    .footer a {
        font-size: 12px;
    }

    .registraionFrom form {
        width: 90%;
    }
}

@media (max-width:425px) {
    .registraionFrom .QRText {
        padding-left: 0px;
        margin-top: 30px;
        text-align: justify;
        font-size: 18px
    }
    .footer a {
        font-size: 12px;
    }
    .registraionFrom form {
        width: 95%;
    }
}


/*Login Form*/
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fffaf5;
}

/* Login form container */
.login-container {
    width: 90%;
    max-width: 350px;
    padding: 40px;
    border-radius: 10px;
    background-color: #ffffff;
/*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    text-align: center;
    border-top: 4px solid #e35f14 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgb(218 216 216);
    box-shadow: 1px 3px 5px rgb(185, 185, 185);
}

    /* Form Heading */
    .login-container h2 {
        color: #e35f14;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .login-container p {
        color: #666;
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Input Fields */
    .login-container input {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        background-color: #ffffff;
        text-align: center;
        outline: none;
        box-sizing: border-box;
    }

        /* Input Focus Effect */
        .login-container input:focus {
            border-color: #e35f14;
            box-shadow: 0 0 5px rgba(227, 95, 20, 0.3);
        }

    /* Button Styling */
    .login-container button {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        background-color: #e35f14;
        color: white;
        cursor: pointer;
        transition: 0.3s;
        box-sizing: border-box;
    }

        /* Button Hover Effect */
        .login-container button:hover {
            background-color: #d44d0f;
        }

/* Media Queries for Responsive Design */

@media (max-width: 1200px) {
    .login-container {
        width: 50%;
        padding: 40px;
    }

        .login-container h2 {
            font-size: 28px;
        }

        .login-container input,
        .login-container button {
            font-size: 18px;
        }
}

@media (max-width: 992px) {
    .login-container {
        width: 60%;
        padding: 35px;
    }

        .login-container h2 {
            font-size: 26px;
        }

        .login-container input,
        .login-container button {
            font-size: 17px;
        }
}

@media (max-width: 768px) {
    .login-container {
        width: 70%;
        padding: 30px;
    }

        .login-container h2 {
            font-size: 24px;
        }

        .login-container input,
        .login-container button {
            font-size: 16px;
        }
}

@media (max-width: 576px) {
    .login-container {
        width: 85%;
        padding: 25px;
    }

        .login-container h2 {
            font-size: 23px;
        }

        .login-container input,
        .login-container button {
            font-size: 15px;
        }
}

@media (max-width: 425px) {
    .login-container {
        width: 95%;
        padding: 20px;
    }

        .login-container h2 {
            font-size: 22px;
        }

        .login-container p {
            font-size: 13px;
            margin-bottom: 15px;
        }

        .login-container input,
        .login-container button {
            font-size: 14px;
        }
}

/*OBC Identity Card Css*/

.identityCard {
    padding: 20px;
}

    .identityCard img {
        width: 100%;
        height: auto;
        display: block;
    }

    .identityCard .mainCardDiv {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .identityCard label {
        position: absolute;
        font-size: 1.2rem;
        color: #a52a2a;
        font-weight: bold;
    }

   
    .identityCard .RgDate {
        top: 40%;
        left: 13%;
    }

    .identityCard .RgNo {
        top: 40%;
        right: 22%;
    }

    .identityCard .RgName {
        top: 51%;
        left: 20%;
    }

    .identityCard .RgTaluka {
        top: 60%;
        left: 14%;
    }

    .identityCard .RgDistrict {
        top: 60%;
        right: 35%;
    }

    .identityCard .RgValidity {
        top: 71%;
        left: 18%;
    }

    .identityCard .button {
        background-color: #a52a2a;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        box-shadow: 1px 2px 3px gray;
    }

        .identityCard .button:hover {
            background-color: #800000;
        }


@media (max-width: 768px) {
    .identityCard label {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .identityCard label {
        font-size: 0.7rem;
    }

    .identityCard .button {
        padding: 8px 16px;
    }
}
@media (max-width: 425px) {
    .identityCard label {
        font-size: 0.5rem;
    }
    .identityCard .button {
        padding: 6px 12px;
    }
}
@media (max-width: 325px) {
    .identityCard label {
        font-size: 0.4rem;
    }

    .identityCard .button {
        padding: 6px 12px;
    }
}


/**** Adesh*******/

body {
    margin-top: 8px;
    padding: 0;
    position: relative;
    min-height: 100%;
    font-family: poppins;
    /* margin-bottom: 60px;*/
}

.slider_section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .slider_section img {
        width: 100%;
        height: 200px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 5px;
    }

    .slider_section h3 {
        position: absolute;
        color: white;
        font-size: 20px;
        padding: 0 10px;
        text-align: center;
        z-index: 1;
        font-weight: bold;
    }

@media (min-width: 375px) {
    .slider_section h3 {
        font-size: 24px;
    }

    .slider_section img {
        height: 250px;
    }
}

@media (min-width: 767px) {
    .slider_section h3 {
        font-size: 45px;
    }

    .slider_section img {
        height: 400px;
    }
}

.policy_data . p, li {
    font-size: 18px;
}

.policy_data li {
    padding: 5px;
}

.policy_data h1, h3, h4, p {
    margin: 10px 0;
}

/***********************************************************/

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 30px 0;
    text-align: center;
    z-index: 100;
}

.header-top p {
    background-color: #e35f14;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 15px 0;
}


.main-section {
    /*margin-top: 100px;*/
    text-align: center;
}

.page-header {
    font-size: 40px;
    margin-bottom: 20px;
}


.search-section {
    /*padding: 20px;*/
/*    background-color: #f9f9f9;*/
    /*margin-top: 30px;*/
}

.top-search {
    display: flex;
    justify-content: center;
    gap: 15px;
/*    margin-bottom: 5px;*/
    flex-wrap: wrap;
    text-align:left;
}

.district-section p {
    margin: 0px;
}

.district-section {
    flex: 1;
    /*margin: 10px;*/
    font-weight: bold;
}

    .district-section select {
        padding: 8.1px 8.1px 8.1px 0px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

.search-btn-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    margin-top: 15px;
}


.search-btn-section {
    /*padding: 10px 15px;*/
    font-size: 18px;
    /*cursor: pointer;*/
    /* margin: 5px;*/
    border: none;
    /*box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);*/
}

.search-btn {
    background-color: darkblue;
    color: white;
    border-radius: 5px;
}

.dwnld-btn {
    /*    background-color: green;*/
    color: white;
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 2px 1px;
}
.excl-img {
    width: 20px;
    height: 25px;
}

.table_data {
    /*padding: 20px;*/
    margin-top: 15px;

}

    .table_data table {
        width: 100%;
        border-collapse: collapse;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
     
        /*        border-radius: 5px;*/
    }

    .table_data th, td {
        padding: 10px;
        text-align: left;
/*        border: 1px solid #000000;*/
        border: 1px solid #ced4da !important;
    }

    .table_data th {
        background-color: #f4f4f4;
    }
    .action_btn {
        display: flex;
        justify-content: center;
        /*justify-content:space-between*/
    }

.del_btn {
    color: red;
    border: none;
    background-color: transparent;
}
.edit_icon a,
.delete_icon button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
}

.edit_icon svg,
.delete_icon i {
    width: 24px;
    height: 24px;
}
    .form-control {
    padding: 2px;
}



.form-control1 {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding-left:3px;

}

    @media (max-width: 1024px) {
        .table_data table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

        .table_data table th, table td {
            min-width: 150px;
        }

    .pagination td {
        min-width: 10px;
        padding: 5px;
    }

    .top-search {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header-top p {
        font-size: 18px;
    }

    .page-header {
        font-size: 2rem;
    }

    .district-section select {
        max-width: 100%;
    }


    .top-search {
        flex-direction: initial;
        align-items: center;
    }

    .district-section {
        width: 100%;
/*        margin-bottom: 10px;*/
    }

    .search-btn-section button {
/*        width: 100%;*/
    }

    button {
        font-size: 12px;
        padding: 3px 6px;
    }

    .table_data table th, table td {
        padding: 8px;
        font-size: 14px;
    }

    .table_data table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

        .table_data table th, table td {
            min-width: 10px;
        }

    .pagination td {
        min-width: 10px
    }
}

@media (max-width: 479px) {
    .header-top p {
        font-size: 16px;
    }

    .page-header {
        font-size: 1.8rem;
    }

    .district-section select {
        max-width: 100%;
    }


    .top-search {
        flex-direction: column;
        align-items: center;
    }

    .district-section {
        width: 100%;
        /*        margin-bottom: 10px;*/
    }

    .search-btn-section button {
        /*        width: 100%;*/
    }

    button {
        font-size: 11px;
        padding: 3px 6px;
    }

    .table_data table th, table td {
        padding: 6px;
        font-size: 12px;
    }

    .table_data table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    body {
        margin-bottom: 60px;
    }
}

/* Modal */


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    overflow: unset !important;
}

.modal-content {
    margin: auto;
    border: 1px solid #888;
    width: 90% !important;
    height: 100%;
    flex-direction: column;
    overflow: auto;
    position: relative !important;
    border: none !important;
}


.close {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    border: none;
    background: #dd1717;
    color: #fff;
    font-size: 40px;
    width: 40px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.cancel {
    /* background-image: radial-gradient(100% 100% at 100% 0, #667ded 0, #33158c 100%); */
    background-color: #000249;
    border: none;
    border-radius: 5px;
    transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    text-decoration: none;
    color: white;
    align-items: center;
    font-size: 14px;
    border: none;
    font-weight: 500 !important;
    padding: 5px 15px;
    letter-spacing: 0.2px;
    transition: 0.5s ease-out;
    text-decoration: none;
    margin-right: 2px;
    text-align: center;
}