font-face {
    font-family: "kalpurushregular";

    font-weight: normal;
    font-style: normal;
}
/* Reset some basic elements */
body,
html,
h1,
p,
a,
div {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styles */
body,
html {
    height: auto;
    font-family: "Arial", sans-serif;
    display: flex;
    flex-direction: column;
    background: url("../img/backend-background-image.png") no-repeat center
        center;
    background-size: auto;
    background-size: cover;
}

/* Container */
.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-title {
    display: flex;
    align-items: center;
}

.gov-logo {
    height: 50px;
    margin-right: 15px;
}

.title {
    font-size: 1.25rem;
    font-weight: bold;
}

/* Login page */
.login-page {
    flex: 1;
    background-image: url("../img/background-image.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 860px;
}

.password-container {
    position: relative;
    width: 100%;
}

.toggle-password {
    position: absolute;
    top: 67%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.toggle-password img {
    width: 20px; /* Adjust the size of the icon if needed */
    height: 20px;
}

.form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-check-input {
    margin-right: 10px;
}

.forgot-password {
    margin-left: auto;
}

.container-content {
    width: 100%;
    height: 580px;
}

.dashboard-container {
    width: 100%;
}

.top-header {
    background-color: #689579;
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding-left: 10px;
}
.welcome {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.login-container .card {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 30px 15px;
}

.card-form {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    margin-left: 20px;
}

.card-count {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    text-align: center;
    width: 455px;
    height: 200px;
    margin: 0 auto; /* Centers horizontally */
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    justify-content: center; /* Centers children vertically within the div */
    align-items: center; /* Centers children horizontally within the div */
}

.card-count h2 {
    font-size: 24px;
}

.card-coun .count {
    font-size: 48px;
    color: #4caf50;
}
.card2 {
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
}

.card-body {
    flex-direction: column;
    align-items: center;
    margin-left: 100px;
    margin-right: 100px;
}

.card-title {
    font-size: 1.75rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    margin-top: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

.form-label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 16px;
}

/* Form check */
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-check-input {
    margin-right: 10px;
}
/* Password container */
.password-container {
    align-items: center;
}

.toggle-password {
    cursor: pointer;
}

.toggle-password img {
    height: 20px;
    width: 20px;
}

.btn-custom {
    width: 100%;
    border: 2px solid #69af82;
    background-color: #69af82;
    color: #fff;
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-custom:hover {
    background-color: transparent;
    color: #69af82;
}

.btn-custom-submit {
    border: 2px solid #4d8ab6;
    background-color: #4d8ab6;
    color: #fff;
    border-radius: 10px;
    padding: 6px 20px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-custom-submit:hover {
    border: 2px solid #69af82;
    background-color: #69af82;
    color: #fff;
}

.btn-custom-header {
    border: 2px solid #0f8c44;
    background-color: transparent;
    color: #0f8c44;
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-custom-header:hover {
    background-color: #0f8c44;
    color: #fff;
}

.forgot-password {
    text-decoration: none;
    color: #007bff;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-image: url("../img/footer-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* padding-top: 8px; */
    /* padding-bottom: 10px; */
    /* background-color: #fff; */
    min-height: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.footer-text {
    margin: 0;
}

.footer-link {
    text-decoration: none;
    color: #007bff;
}

.footer-link:hover {
    text-decoration: underline;
}



.sidebar {
    min-height: 100vh;
    flex: 0 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-content .logo img {
    width: 80px;
}

.sidebar-content .nav-link {
    color: #000;
    font-size: 18px;
    padding: 10px;
    border-radius: 0;
    text-align: justify;
}

.sidebar-content .nav-link.active {
    background-color: #e9ecef;
    color: #4caf50;
}

.main-content {
    padding: 20px;
    flex-grow: 1;
    position: relative;
}

.top-header {
    padding: 15px;
}
.top-header .title {
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    /* padding-top: 5px; */
}
.top-header .notification {
    font-size: 20px;
}

.top-header .user-profile .user-image {
    width: 40px;
    height: 40px;
}

.top-header .user-profile .user-name p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
}

.top-header .user-profile .user-name span {
    font-size: 12px;
    color: #777;
}

.header h1 {
    font-size: 28px;
    color: #4caf50;
}

.buttons .btn {
    margin: 10px;
    font-size: 18px;
    padding: 10px 20px;
    background: rgba(86, 123, 101, 1);
}

/* Rectangle 5059 */

.btnsub {
    color: #fff;
    width: 115px;
    height: 40px;
    background: #4d8ab6;
    border-radius: 5px;
    border: 1px solid #4d8ab6;
}



#multi-step-form {
    padding: 20px 30px;
}
.form-sec-block {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #b8b8b8;
}

.form-sec-block.active {
    display: block;
}

.form-block-head h3 {
    border: 1px solid #bbb;
    border-width: 0 0 1px 0;
    margin-bottom: 30px;
    padding-bottom: 12px;
    font-size: 24px;
}

.form-block-head h3 .step-num {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #fff;
    color: #5abf66;
    /* border-color: #5abf66; */
    border: 1px solid #5abf66;
    border-radius: 50%;
    padding: 8px 16px;
    margin-right: 10px;
}
form .form-label {
    font-weight: bold;
}

.steps-indicator {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #eaeaea;
    padding: 15px 0 15px 0;
    border-radius: 10px;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step {
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
    /* background: white; */
    border-radius: 5px;
    /* border: 1px solid #eaeaea; */
    color: #818181;
    transition: background-color 0.3s;
}

.step:hover {
    background: #f1f1f1;
}

.step span {
    display: inline-block;
    background: #007bff;
    color: white;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
    font-weight: bold;
}

.step.current,
.step.completed {
    color: #000;
}

.step.current .step-num {
    background-color: #fff;
    color: #5abf66;
    /* border-color: #5abf66; */
    border: 1px solid #5abf66;
}

.step .step-num {
    background-color: #fff;
    color: #c0c0c0;
    border-radius: 50%;
    padding: 0px 7px;
    border: 1px solid #c0c0c0;
}

.step .step-num {
    margin-right: 10px;
}

.step.completed span {
    background: #5abf66;
    color: #fff;
}

.steps {
    position: relative;
    padding-left: 20px; /* Adjust according to your layout */
}

.steps::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 34px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: #ddd;
}

.step-wrapper {
    position: relative;
    padding-bottom: 0;
}

.step-wrapper .step::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 10px;
    height: 10px;
    /* background-color: #fff; */
    /* border: 2px solid #ddd; */
    border-radius: 50%;
    z-index: 1;
}

.step-wrapper:last-child,
.step-wrapper .step:last-child {
    padding-bottom: 0;
}

.step-wrapper .step {
    position: relative;
    padding-left: 0;
}
.form-upload-btn {
    padding: 20px;
    display: flex;
    width: 100%;
    margin: 0 auto;
    border: 1px dashed #d0d5dd;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    min-height: 140px;
}
.form-upload-btn span {
    display: block;
    margin: 2px 0;
    text-align: center;
}
.form-upload-btn .icon-upload img {
    margin-bottom: 8px;
    display: inline-block;
    width: 20px;
}
.fileUploadBrowser input.upload {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    outline: none !important;
    box-shadow: none !important;
}
.form-upload-btn input:focus-visible,
.form-upload-btn input:focus,
.form-upload-btn input:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
.fileUploadBrowser {
    position: relative;
    background: #318dde;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
}
.fileUploadBrowser span {
    white-space: nowrap;
    display: flex;
    align-items: center;
    column-gap: 5px;
    cursor: pointer;
}

.icon-arrow-right-white {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../img/icon-arrow-right-white.png") no-repeat center right;
    background-size: 12px;
}

.upload-text {
    width: 100%;
    text-align: center;
    border: none !important;
    box-shadow: none;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 10px;
    display: block;
}

body .form-upload-btn ::-webkit-input-placeholder {
    color: #394452;
    opacity: 1 !important;
}
body .form-upload-btn :-moz-placeholder {
    color: #394452;
    opacity: 1 !important;
}
body .form-upload-btn ::-moz-placeholder {
    color: #394452;
    opacity: 1 !important;
}

.attach-table .btn {
    background-color: #dadee3;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    padding: 5px 10px 5px;
}
.attach-table .btn i {
    margin-right: 5px;
}
.attach-table tbody td,
.attach-table thead th {
    vertical-align: middle !important;
    text-align: center !important;
}
.attach-table tbody td p {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 0;
}
.attach-table .attach-title {
    color: #000;
    font-size: 15px;
    line-height: 1.2;
}
.attach-table .attach-title span {
    font-size: 12px;
    line-height: 1.2;
    font-style: italic;
    color: #b34545;
    display: block;
    font-weight: 300;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.upload-btn-wrapper input[type="file"] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.icon-input-caldender {
    display: inline-block;
    background: url("../img/icon-input-calendar.svg") no-repeat center center;
    background-size: 22px;
    height: 22px;
    width: 22px;
}

body {
    font-family: 'Bangla', Arial, sans-serif;
    
    font-size: 20px;
   
}
