﻿.navbar {
    background-color: #144191;
}

.navbar-brand {
    color: #ff6600;
    margin-left: 62px;
}

    .navbar-brand span {
        color: #ff6600;
    }

.btn-back {
    background-color: #ff6600;
    color: white;
}

.container {
    background-color: white;
    padding: 30px;
    margin-top: 20px;
    border-radius: 5px;
}

.form-label {
    font-weight: bold;
}

.form-text {
    color: #6c757d;
}

.btn-primary1 {
    background-color: #19881d;
    border: none;
    color: white;
}

    .btn-primary1:hover {
        background-color: #1b5e1d;
        border: none;
        color: white;
    }

.btn-primary {
    background-color: #003399;
    border: none;
}

.btn-danger {
    background-color: #ff6600;
    border: none;
}

.captcha-image {
    background-color: #f8d7da;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.btn-refresh {
    background-color: #28a745;
    color: white;
    border: none;
}

/*Added By Sai*/
.table {
    --bs-table-bg: initial; /* or unset */
    --bs-table-color: initial;
}

    .table thead {
        background-color: #ff6600;
        color: white;
    }

.bg_light75p {
    background-color: rgb(183 183 183 / 75%);
}

.px_loader {
    z-index: 1056;
}

.px_loader_content {
    display: inline-block;
    position: relative;
    width: 72px;
    height: 72px;
}

    .px_loader_content div {
        position: absolute;
        border: 4px solid #ff6600;
        opacity: 1;
        border-radius: 50%;
        animation: loader_anim 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .px_loader_content div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes loader_anim {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}