body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #101010;
  font-size: 0.875rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif;
}

a {
  text-decoration: none;
}

.bg-light {
  /* background-color: #eaf1f6 !important; */
  background-color: #eaf1f6 !important;
}

button {
  border: 0;
  box-shadow: none;
}

section {
  padding: 4.375rem 0;
}

header {
  z-index: 99;
  transition: all 300ms ease-in-out;
}

.navbar-brand>img {
  width: 15.625rem;
  max-width: 100%;
}

.navbar-nav .nav-link {
  font-size: 1rem;
}

.btn-custom {
  background-color: #316ea0;
  border: 1px solid #316ea0 !important;
  color: #ffffff;
  border: none;
  padding: 0.8125rem 1.875rem;
  font-size: 1em;
  cursor: pointer;
  border-radius: 0.3125rem;
  margin-top: 0.3125rem;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  color: #fff;
  opacity: 0.8;
}

.form-label {
  font-weight: 600;
}

/* Footer CSS Starts */

.f-title {
  color: #fff;
}

.f-listing {
  list-style-type: none;
}

.main-footer p {
  color: #b2b2b2;
}

.f-listing>li>a {
  color: #b2b2b2;
}

.f-listing>li>a:hover {
  color: #fff;
}

.social-media-links>li {
  display: inline-block;
  margin-right: 0.625rem;
}

.developedby-wrap a>img {
  width: 1.125rem;
  filter: grayscale(1) brightness(9);
  transition: all 300ms ease-in-out;
  margin-left: auto;
  display: block;
}

/* Footer CSS Ends */

/* Login Screen CSS Starts */

.login-screen-wrapper {
  min-height: calc(100vh - 3.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 0 6.25rem;
}

.custom-btn {
  background-color: #316ea0;
  color: #fff;
  font-size: 0.9375rem;
  border-radius: 0.3125rem;
  padding: 0.4375rem 1.5625rem;

}

.custom-btn:hover,
.custom-btn:active {
  background-color: #316ea0;
  color: #fff;
}

.custom-btn:focus,
.custom-btn:focus-visible {
  background-color: #316ea0;
  color: #fff;
  outline: 0.125rem solid #000 !important;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.sub-heading {
  background: #316ea0;
  color: #fff;
  border-radius: 0.3125rem;
}

/* Login Screen CSS Ends */

/* Multi Step Form Starts */

#signUpForm {
  /* max-width: 31.25rem; */
  background-color: #ffffff;
  /* margin: 2.5rem auto; */
  /* padding: 2.5rem; */
  /* box-shadow: 0 0.375rem 1.125rem rgb(0 0 0 / 9%); */
  border-radius: 0.75rem;
}

#signUpForm .form-header {
  gap: 0.625rem;
  text-align: center;
  font-size: .9em;
}

#signUpForm .form-header .stepIndicator {
  position: relative;
  flex: 1;
  padding-bottom: 1.875rem;
}

#signUpForm .form-header .stepIndicator.active {
  font-weight: 500;
  color: #316ea0;
}

#signUpForm .form-header .stepIndicator.finish {
  font-weight: 500;
  color: #316ea0;
}

#signUpForm .form-header .stepIndicator::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #adc5d9;
  border-radius: 50%;
  border: 0.1875rem solid #eaf1f6;
}

#signUpForm .form-header .stepIndicator.active::before {
  background-color: #316ea0;
  border: 0.1875rem solid #adc5d9;
}

#signUpForm .form-header .stepIndicator.finish::before {
  background-color: #316ea0;
  border: 0.1875rem solid #adc5d9;
}

#signUpForm .form-header .stepIndicator::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  width: 100%;
  height: 0.1875rem;
  background-color: #f3f3f3;
}

#signUpForm .form-header .stepIndicator.active::after {
  background-color: #316ea0;
}

#signUpForm .form-header .stepIndicator.finish::after {
  background-color: #316ea0;
}

#signUpForm .form-header .stepIndicator:last-child:after {
  display: none;
}

#signUpForm input.form-control,
#signUpForm select.form-select {
  padding: 0.625rem 1.5625rem 0.625rem 0.9375rem;
  width: 100%;
  font-size: 1em;
  border: 1px solid #e3e3e3;
  border-radius: 0.3125rem;
}

#signUpForm input:focus,
#signUpForm select.form-select:focus {
  border: 0.0625rem solid #316ea0;
  outline: 0.125rem solid #000 !important;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25) !important;
}

#signUpForm input.invalid,
#signUpForm select.form-select.invalid {
  border: 1px solid #ffaba5;
}

#signUpForm .step {
  display: none;
}

.step-title {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
}

.login-screen-wrapper h1 {
  /* color: #316ea0; */
  color: #173785 !important;
}

#signUpForm .form-footer {
  overflow: auto;
  gap: 1.25rem;
}

#signUpForm .form-footer button {
  background-color: #316ea0;
  border: 1px solid #316ea0 !important;
  color: #ffffff;
  border: none;
  padding: 0.8125rem 1.875rem;
  font-size: 1em;
  cursor: pointer;
  border-radius: 0.3125rem;
  flex: 1;
  box-shadow: none !important;
  margin-top: 0.3125rem;
}

#signUpForm .form-footer button:hover {
  opacity: 0.8;
}

#signUpForm .form-footer #prevBtn {
  background-color: #fff;
  color: #316ea0;
}

input.form-control {
  padding: 0.9375rem;
}

/* Multi Step Form Ends */
.success-img-wrap>img {
  width: 5rem;
}

.text-success {
  color: #29b933 !important;
}

.content-wrapper {
  padding-top: 6.25rem;
}

.content-wrapper {
  min-height: calc(100vh - 3.25rem);
}

.title {
  color: #316ea0;
  font-size: 1.625rem;
}

.complaint-list {
  list-style-type: none;
  padding-left: 0;
}

.complaint-list>li>p {
  margin-bottom: 0.3125rem;
}

.complaint-list>li {
  position: relative;
  padding-left: 2.5rem;
}

.complaint-list>li::before {
  position: absolute;
  content: "";
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 50%;
  background-color: #a1a1a1;
  left: 0;
  top: 0.3125rem;
  z-index: 1;
}

.complaint-list>li::after {
  position: absolute;
  content: "";
  height: calc(100% + 1.25rem);
  width: 1px;
  background-color: #ccc;
  left: 0.3125rem;
  top: 0.625rem;
  z-index: 0;
}

.complaint-list>li:last-child:after {
  display: none;
}

.complaint-list>li.compeleted::before,
.complaint-list>li.compeleted::after {
  background-color: #29b933 !important;
  ;
}

.status-label {
  display: inline-block;
  padding: 0.3125rem;
  border-radius: 0.3125rem;
  color: #fff;
}

.custom-accordion .accordion-button {
  color: #fff;
  font-weight: 600;
  word-break: break-word;
  background-color: #316ea0;
}

.accordion-button::after {
  filter: invert(1) brightness(9);
}

.custom-accordion .accordion-button:focus,
.custom-accordion .accordion-button:active {
  box-shadow: none;
}

.logo img {
  max-width: 17.5rem;
}

.required, .invalid-feedback, span.error, label.error {
  color: #c00000 !important;
}

::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-text {
  color: #495057;
}

::-webkit-input-placeholder,
::placeholder {
  color: #495057 !important;
  opacity: 1;
}

body.overflow-hidden-g {
  overflow: hidden !important;
  height: 100vh;
}

.modal-dialog.modal-fl .modal-content {
  border: 0;
  border-radius: 0;
}

.modal-fl {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  left: 0;
}

.inaugrate-img {
  height: 100vh;
  display: grid;
  align-items: center;
}

.inaugrate-img>img {
  height: 100%;
  min-height: 90vh;
  object-fit: contain;
  object-position: top;
  max-height: 99vh;
  object-position: center;

}

.inog-modal .modal-body .inaugrate-img>img {
  height: 100%;
  margin: 0 auto;
  display: block;
}

.weblogin-screen {
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-login-form {
  background-color: #fff;
  border-radius: 0.9375rem;
}

.btn:focus,
.form-control:focus,
.form-select:focus,
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 0.125rem solid #000 !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25) !important;
  outline-offset: 0.125rem;
}

.dby {
  width: 1.125rem;
}

footer p {
  font-size: 0.8125rem;
}

.login-screen-wrapper .click-here-text{
  text-decoration: underline;
  color: #0D6EFD;
  font-weight: 600;
}
.login-screen-wrapper .form-select{
  padding: 0.9375rem;
}

.login-screen-wrapper .new-user-text p{
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 500;
}