/* :root {
  --fa-circle-check: url("/img/fa-circle-check.jpg");
  --fa-file-contract: url("/img/fa-file-contract.jpg");
  --fa-qrcode: url("/img/fa-qrcode.jpg");
} */

/* .fa-file-contract {
  content: var(--fa-file-contract);
}
.fa-circle-check {
  content: var(--fa-circle-check);
}
.fa-qrcode {
  content: var(--fa-qrcode);
} */

body,
html {
  height: 110vh;
  width: 100%;
  font-family: Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.text-primary {
  color: #0056b3 !important;
}

body {
  background: #fafafa;
  color: #505050;
}

body {
  transition: opacity 0.4s ease;
}

body.fade-out {
  opacity: 0;
}

::-webkit-scrollbar {
  width: 5px;
  position: absolute;
}
::-webkit-scrollbar-track {
  background: #fafafa;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #0056b3;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8db5e0;
}

.hidden {
  display: none !important;
}

.navbar {
  padding: 0.5rem;
}

.navbar-left .nav-item,
.navbar-right .nav-item {
  list-style: none;
}
.navbar-left .nav-item .navbar-img,
.navbar-right .nav-item .navbar-img {
  height: 75px;
}

.navbar-left,
.navbar-right {
  display: flex;
  padding: 0;
  margin: 0;
}

.nav-fill .nav-item,
.nav-fill > .nav-link {
  min-width: 10rem;
}

.header-text h5 {
  font-size: 20px;
  font-weight: 600;
  color: #505050;
}
.header-text h6 {
  font-size: 16px;
  font-weight: 500;
  color: #949494;
}

.container {
  position: relative;
}

.form-floating {
  margin: 10px 5px;
}

.form-floating > label {
  padding: 1rem 0.75rem;
}

.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.3rem;
  padding-bottom: 0.5rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.3rem;
  padding-bottom: 1rem;
}

#banner {
  background: url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically */
  backdrop-filter: blur(3px); /* optional blur effect */
}

.overlay-white {
  background: #ffffffb3;
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay-black {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.bg-primary {
  background-color: #005aae !important;
}

.login-container {
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 100%;
  padding-top: 40px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 30px;
  display: block;
  margin: auto;
}

.login-container img {
  max-height: 70px;
}

.logo {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.login-container input {
  width: 100%;
  padding: 12px;
  margin: 0;
  border-radius: 0.8rem;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  font-size: 14px;
}

.login-container button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 0.8rem;
  background-color: #0056b3;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  height: calc(3.5rem + -5px);
}

.login-container button:hover {
  background-color: #004099;
}

.register-link {
  display: block;
  cursor: pointer;
  margin-top: 15px;
  font-size: 1rem;
  color: #666;
  text-decoration: none;
}

#slider {
  position: relative;
}

.hero-slider {
  height: calc(100dvh - 20.4dvh);
}

.hero-slider .carousel-item,
.hero-slider .carousel-item img {
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire slide */
}

#links {
  backdrop-filter: blur(10px);
  background: #ffffff;
  width: 100%;
  /* top: 0; */
  /* position: sticky; */
  /* z-index: 2; */
}

#links .nav-link {
  background-color: #fff;
  color: #505050;
  border-radius: 0;
  padding: 1rem 0;
  border-radius: 0rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: 0.2s all ease-in-out;
}

#links .nav-link:hover {
  background-color: #2368b1;
  color: #fff;
}

#links .nav-link.active {
  background-color: #0056b3;
  color: #fff;
}

section.about-us {
  position: relative;
  width: 100%;
  padding: 3rem 0.5rem;
}

section.about-us h1 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

section.about-us p {
  font-size: 1rem;
  letter-spacing: 0.5px;
}

section.about-us .container {
  .list-wrapper {
    li::marker {
      font-weight: 600;
    }

    strong {
      font-weight: 700;
    }

    /* Type: I */
    ol.roman {
      font-weight: bold;
      font-size: 2rem;
      margin-top: 0.5rem;

      li {
        margin: 1.5rem 0;
        letter-spacing: 0.5px;
      }
      li:first-child {
        margin: 0;
      }
      li:last-child {
        margin: 0;
      }
    }
    ol.roman:last-child {
      margin: 0;
    }

    /* Type: 1 */
    ol.decimal {
      font-weight: 500;
      font-size: 1rem;
      margin-top: 0.5rem;

      li {
        margin: 1rem 0;
      }
    }

    /* Type: a */
    ol.alpha {
      font-weight: 500;
      font-size: 1rem;
      margin-top: 0.5rem;

      li {
        margin: 0.5rem 0;
      }
    }

    /* Type: i */
    ol.roman-lc {
      font-weight: 500;
      font-size: 1rem;
      margin-top: 0.5rem;

      li {
        margin: 0.2rem 0;
      }
    }
  }
}

.terms-and-conditions-wrapper {
  .list-style-none {
    list-style: none;
  }
  .list-style-disc {
    list-style: disc;
  }
  .list-group {
    margin-top: 2rem;
  }
  .list-style-alfa {
    padding-left: 2rem;
  }
  .list-group-heading {
    display: revert;
  }
  .list-group-heading::marker {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .list-group:first-child {
    margin-top: 0rem;
  }
  .terms-and-conditions-title {
    font-size: 2rem !important;
    margin-bottom: 0.5rem;
  }
  .terms-and-conditions-subtitle {
  }
  .terms-and-conditions-heading {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .terms-and-conditions-paragraph {
    margin: 0.8rem 0;
  }
  .terms-and-conditions-paragraph:last-child {
    margin-bottom: 0rem;
  }
  .terms-and-conditions-listing {
    padding-left: 1.4rem;
  }
  .terms-and-conditions-listing li {
    margin: 0.3rem 0;
  }
}

section.about-us .cards .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;

  background-color: #0056b3;
  color: #fff;
  border-radius: 2rem;
  min-height: 28rem;
  margin-top: 20px;
  padding: 1.5rem;
}

section.about-us .cards .card-content i {
  font-size: 8rem;
}

section.about-us .cards .card-content h2 {
  font-size: 1rem;
  margin: 1.2rem 0;
  font-weight: 600;
}
section.about-us .cards .card-content em {
  font-size: 0.8rem;
  margin: 1.2rem 0;
}

#links2 {
  background-color: #0056b3;
  color: #fff;
  position: relative;
  padding: 1rem 1.3rem;
}

#links2 .nav-link {
  font-size: 1rem;
  padding: 10px 50px;
  color: #fff;
  transition: 0.2s all ease-in-out;
  border-radius: 1rem;
  font-weight: bold;
}
#links2 .nav-link:hover {
  background-color: #fff;
  color: #0056b3;
}

#links2 .nav-link.active {
  background-color: #fff;
  color: #0056b3;
  border-radius: 1rem;
}

#links2-content {
  padding: 3rem 0.5rem;
}

#links2-content #news img {
  max-width: 100%;
}
#links2-content #news h4 {
  font-size: 1.5rem;
  font-weight: bold;
}
#links2-content #news h4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#links2-content #news p {
  font-size: 1rem;
  font-weight: 600;
  color: #949494;
}

#links2-content #news .item {
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#links2-content #news .item:last-child {
  margin-bottom: 0;
}

#links2-content #news .item .col-lg-4 div {
  overflow: hidden;
  border-radius: 1rem;
}

#links2-content #news .item .col-lg-8 {
  padding-left: 40px;
  padding-right: 40px;
}

#links2-content #news .item a {
  text-decoration: none;
  color: #333;
  transition: 0.2s all ease-in-out;
}

#links2-content #news .item a img {
  transition: transform 0.5s ease;
}

#links2-content #news .item a:hover {
  color: #0056b3;
}

#links2-content #news .item a:hover img {
  transform: scale(1.1); /* Zoom in by 10% */
}

#links2-content #media img {
  border-radius: 1rem;
}

#home footer > .container > .about-us,
#application-status footer > .container > .about-us,
#qr-verification footer > .container > .about-us {
  padding: 0 6rem 2rem 6rem;
}

footer {
  width: 100%;
}
#about-us {
  background: url(../img/footer.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0 0 0 !important;
  width: 100%;
  color: #fff;
}
#about-govph {
  /* background: linear-gradient(rgb(255 255 255 / 50%), rgb(255 255 255 / 50%)),
    url(../img/govph-footer.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  width: 100%;
  background-color: #f7f7f7;
}

footer .about-details {
  margin-bottom: 3rem;
}
footer .about-details {
  margin-bottom: 3rem;
}
footer .about-details:last-child {
  margin-bottom: 0;
}
footer .container .details h5 {
  margin-bottom: 10px;
  font-weight: bold;
}
footer .about-govph ul li.details {
  font-size: 1rem;
  color: #808080;
  width: 100%;
}
footer .container .about-govph .govph-detail h5 {
  color: #505050;
}
footer .container .about-details h5,
footer .container .about-govph .govph-detail h5 {
  margin-bottom: 10px;
  font-weight: bold;
}
footer li {
  list-style: none;
}
footer .col-lg-4:last-child li a {
  color: #fff;
  text-decoration: none;
}
footer .col-lg-4:nth-child(2) li a {
  color: #fff;
}
footer .col-lg-4:last-child ul.quick-links li a:hover {
  text-decoration: underline;
}
footer .col-lg-4:last-child i {
  font-size: 2rem;
}
footer .col-lg-4:last-child {
  margin-left: 0;
}
footer #copyright {
  padding-top: 3rem;
}
footer .about-govph {
  padding: 3rem 6rem;
  position: relative;
}
footer .about-govph .republika-logo {
  height: 170px;
  opacity: 0.2;
  transform: translate(30%, 20%);
}
footer .about-govph ul.quick-links li .link {
  text-decoration: none;
  transition: all ease-in 0.09s;
}
footer .about-govph ul.quick-links li .link:hover {
  text-decoration: underline;
}
footer .step {
  display: none;
}
.step.active {
  display: block;
}

.step {
  margin-bottom: 1.3rem;
}

.step:last-child {
  margin-bottom: 0;
}

/* .step.active h4 {
  display: block;
  color: #0056b3 !important;
}
.step h4 {
  display: block;
  color: #73a6de !important;
}

.step h4 span {
  background: #73a6de !important;
}
.step.active h4 span {
  background: #0056b3 !important;
} */

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.65) translateY(-0.6rem) translateX(0.1rem);
}

.form-floating > label {
  opacity: 0.65;
  font-size: 0.8rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + -5px);
}

.form-floating > .form-select {
  padding-top: 1rem;
  padding-bottom: 0.4rem;
}

section.registration-form {
  padding: 30px 0;
}

section.registration-form h1 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
}

section.registration-form form {
  background: #fff;
  padding: 60px;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

section.registration-form h4 span {
  background: #0056b3;
  border-radius: 50%;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  margin-right: 10px;
}

section.registration-form h4 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2rem;
}

section.registration-form input {
  border-radius: 0.8rem;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  font-weight: 500;
}

section.registration-form select {
  border-radius: 0.8rem;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  font-weight: 500;
}

section.registration-form button {
  border-radius: 1.5rem;
  font-weight: bold;
  color: #fff;
  min-width: 140px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

section.registration-form button.btn-primary {
  background-color: #0056b3;
}

section.search-banner {
  width: 100%;
  position: relative;
  background: url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  padding: 3rem 2rem;
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically */
  backdrop-filter: blur(3px); /* optional blur effect */
  background-attachment: fixed;
}

section.search-banner .search-container {
  border-radius: 2rem;
  text-align: center;
  width: 70%;
  display: block;
  margin: auto;
}

section.search-banner .search-container h1 {
  font-size: 1.5rem;
  font-weight: bold;
}

section.search-banner .input-group {
  border: 2px solid #333;
  border-radius: 1rem;
}

section.search-banner .input-group-text {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  border: none !important;
  font-size: 1.5rem;
}

section.search-banner .input-group input {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  border: none !important;
  box-shadow: none !important;
  font-size: 1rem;
}

section.search-banner button {
  border-radius: 1rem;
  font-weight: bold;
}

section.search-banner p,
section.search-banner em {
  font-size: 1rem;
  text-transform: uppercase;
}

section.search-banner
  .input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0px;
}

.btn-group-lg > .btn,
.btn-lg {
  font-size: 1rem;
}

.dropdown-menu {
  right: 0;
  left: unset !important;
}

section.search-banner .status-container {
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: auto;
  padding: 30px 20px;
}

section.search-banner .status-container h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
section.search-banner .status-container i {
  font-size: 5rem;
  margin-bottom: 2rem;
}
section.search-banner .status-container h5 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

section.search-banner .status-container h3 {
  font-size: 1rem;
  display: inline-block;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  font-weight: bold;
}

section.search-banner .status-container .under-evaluation i {
  color: #45a834;
}
section.search-banner .status-container .under-evaluation h3 {
  background: #45a834;
}
section.search-banner .status-container .received i {
  color: #f9d311;
}
section.search-banner .status-container .received h3 {
  background: #f9d311;
}
section.search-banner .status-container .approved i {
  color: #004aad;
}
section.search-banner .status-container .approved h3 {
  background: #004aad;
}
section.search-banner .status-container .returned i {
  color: #e86511;
}
section.search-banner .status-container .returned h3 {
  background: #e86511;
}
section.search-banner .status-container .disapproved i {
  color: #cf3b2e;
}
section.search-banner .status-container .disapproved h3 {
  background: #cf3b2e;
}

section.logs-header {
  background: #0056b3;
}

section.logs-header h1 {
  font-size: 1.5rem;
  color: #fff;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  text-align: center;
  font-weight: bold;
}

section.logs {
  padding: 60px 0;
}

section.logs .table-container {
  width: 100%;
  margin: auto;
}

section.logs .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #dee2e6 !important;
}

section.logs .table-container th {
  font-size: 1.2rem;
  border-bottom: 2px solid #dee2e6;
  padding: 1rem;
  padding-top: 0;
}
section.logs .table-container th:nth-child(1) {
  width: 40% !important;
}

section.logs .table-container td {
  font-size: 1rem;
  border-bottom: 2px solid #dee2e6;
  padding: 0.6rem;
}

section.facility-header {
  background: #0056b3;
}
section.facility-header img {
  width: 40px;
  margin-right: 0.4rem;
}

section.facility-header h1 {
  font-size: 1.5rem;
  color: #fff;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  text-align: center;
  font-weight: bold;
}
section.facility-content {
  padding: 60px 0;
}
section.facility-content p {
  font-size: 1rem;
}

section.facility-content .facility-container {
  width: 100%;
  margin: auto;
}

section.breadcrumb .content {
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 50px 40px;
  margin-top: 40px;
  margin-bottom: 20px;
}

section.breadcrumb .content .icon i {
  color: #0056b3;
  border: 3px solid #0056b3;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  line-height: 55px;
  text-align: center;
  font-size: 2rem;
  margin-right: 15px;
}

section.breadcrumb .content h1 {
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  clear: both;
}
section.breadcrumb .content p {
  display: block;
  margin-bottom: 0;
}

main .cards .content {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 2rem;
  background: #f6fdff;
}

main .cards .card-content img.header-img {
  height: 140px;
}

main .cards .card-header {
  background-color: white;
  border-radius: 2rem;
  padding: 50px 40px;
}

main .cards .card-header button {
  border-radius: 1.5rem;
}

main .cards .card-header .btn-success {
  background: #e2ffd8;
  border: 1px solid #e2ffd8;
  color: #256e16;
}

main .cards .icon i {
  color: #0056b3;
  border: 3px solid #0056b3;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  line-height: 55px;
  text-align: center;
  font-size: 2rem;
  margin-right: 15px;
}

main .cards .content h1 {
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  clear: both;
}

main .cards .content p {
  margin-bottom: 0;
}

main .cards .card-body {
  padding: 50px 40px;
  margin-bottom: 60px;
}

main .cards table th,
main .cards table td {
  padding: 20px;
  border-bottom: 1.5px solid #333;
}

main .badge {
  padding: 5px 10px;
  min-width: 100px;
}

.bg-success {
  background: #e2ffd8 !important;
  border: 1px solid #e2ffd8 !important;
  color: #256e16;
}

.bg-danger {
  background: #ffd4d2 !important;
  border: 1px solid #ffd4d2 !important;
  color: #7a6564;
}

.users-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
}
.users-splash .content {
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 50px;
  width: 100%;
  margin: auto;
}
.users-splash .content i {
  border: 3px solid #0056b3;
  color: #0056b3;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 2.5rem;
  padding: 1rem 1.4rem;
  margin-bottom: 1.5rem;
}
.users-splash .content h1 {
  font-size: 1.4rem;
  font-weight: bold;
}
.users-splash .content button {
  border: 1px solid #0056b3;
  background: #0056b3;
  border-radius: 30px;
  width: 70%;
  padding: 10px;
  color: #fff;
  font-weight: bold;
}

#qr-verification .progress {
  height: 54px;
  border: 2px solid #333;
  padding: 5px;
  border-radius: 1.25rem;
}
#qr-verification .progress-bar {
  background-color: #333 !important;
  border-radius: 1rem;
}

.qr-splash .content {
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 30px 10px;
  margin: 0 auto 30px auto;
}
.qr-splash h1 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #004aad;
}
.qr-splash .content i {
  color: #45a834;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 3.8rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.qr-splash ul {
  list-style: none;
  font-size: 0.8rem;
  display: block;
}
.qr-splash img {
  max-width: 60%;
  border-radius: 1.25rem;
  margin: auto;
  display: block;
}

.qr-splash em {
  display: inline-block;
  font-size: 1.2rem;
  width: 100%;
  margin-top: 20px;
}

.qr-splash .bottom {
  /* position: absolute;
	bottom: 30px;
	width: 30%; */
  width: 100%;
  margin: auto;
}
.qr-splash .bottom button {
  border-radius: 30px;
  padding: 10px 50px;
  background: #004aad;
}
.qr-splash .bottom p {
  font-style: italic;
  font-size: 1rem;
  margin-top: 30px;
}
.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #0000009e;
  z-index: 1;
}
.overlay .overlay-text-wrapper {
  padding: 1rem;
}
.overlay .overlay-text-wrapper .overlay-header-label {
  font-size: 3.2rem;
  font-weight: 800;
  padding: 2rem 0.5rem 0.5rem 0.5rem;
}
.overlay .overlay-text-wrapper .overlay-paragraph-label {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  margin-bottom: 0;
}

.modal-dialog {
  .modal-content {
    border: none;
    border-radius: 2rem;
    box-shadow: 0px 0px 20px 0px #0056b37a;
    padding: 1rem;

    .modal-header {
      border-bottom: none;
      padding: 0.2rem;

      .btn-close {
        position: absolute;
        right: 1.5rem;
      }

      h5.modal-title {
        color: #0056b3;
        font-size: 1.2rem;
        font-weight: 600;
        width: 100%;
        text-align: center;
      }
    }
    .modal-body {
      font-size: 0.8rem;
      font-weight: 500;
      text-align: center;
      padding: 0.5rem;
    }
    .modal-footer {
      border-top: none;
      padding: 0.5rem 2rem;
    }
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  .navbar .container {
    justify-content: center !important;
    flex-direction: column;
    gap: 0.3rem;
  }
  #admin .navbar .container .brand-logo {
    display: none;
  }
  .users-splash .content {
    width: 80%;
  }
  .cards .container .content .card-header .header-group {
    flex-direction: column;
    gap: 1rem;
  }
  section.registration-form form {
    padding: 10px;
    margin-top: 20px;
  }
  .navbar-img {
    height: 50px !important;
  }
  footer .about-govph {
    padding: 3rem 1rem;
  }
  footer .about-us {
    padding: 0 1rem 2rem 1rem;
  }
  footer .about-govph .govph-img {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
  footer .about-govph .govph-img .republika-logo {
    height: 200px;
    opacity: 0.2;
    z-index: -2;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
  #home footer > .container > .about-us,
  #application-status footer > .container > .about-us,
  #qr-verification footer > .container > .about-us {
    padding: 0 2rem 2rem 2rem;
  }
  .overlay .overlay-text-wrapper .overlay-header-label {
    font-size: 2.2rem;
    padding: 2rem 3rem 0.5rem 3rem;
  }
  .overlay .overlay-text-wrapper .overlay-paragraph-label {
    font-size: 1rem;
    padding: 0.5rem 3rem 1rem 3rem;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
  #home footer > .container > .about-us,
  #application-status footer > .container > .about-us,
  #qr-verification footer > .container > .about-us {
    padding: 0 2rem 2rem 2rem;
  }
  #links .container {
    max-width: 100%;
  }

  .navbar-img {
    height: 50px !important;
  }

  .list-wrapper {
    ol.roman {
      font-size: 1rem !important;
    }
    ol.decimal,
    ol.alpha,
    ol.roman-lc {
      font-size: 0.8rem !important;
    }

    ol.roman {
      padding-left: 1rem;
      ol.decimal {
        padding-left: 1rem;
        ol.alpha {
          padding-left: 1rem;
          ol.roman-lc {
            padding-left: 1rem;
          }
        }
      }
    }
  }
}

@media (max-width: 992px) {
  .users-splash .content {
    width: 80%;
  }
  footer .about-govph .govph-img {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
  footer .about-govph .govph-img .republika-logo {
    height: 200px;
    opacity: 0.2;
    z-index: -2;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .navbar.navbar-expand-lg .container {
    max-width: 100%;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .users-splash .content {
    width: 80%;
  }
  .header-text {
    margin: 0.5rem 0;
  }
  .overlay .overlay-text-wrapper .overlay-header-label {
    font-size: 2.2rem;
  }
  .overlay .overlay-text-wrapper .overlay-paragraph-label {
    font-size: 1rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .users-splash .content {
    width: 70%;
  }
  .container {
    max-width: 1600px;
  }
  .navbar-right {
    justify-content: end !important;
  }
  .navbar-left {
    justify-content: start !important;
  }
  .overlay .overlay-text-wrapper .overlay-header-label {
    font-size: 2.6rem;
  }
  .overlay .overlay-text-wrapper .overlay-paragraph-label {
    font-size: 1rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .users-splash .content {
    width: 80%;
  }
  .overlay .overlay-text-wrapper .overlay-header-label {
    font-size: 3.2rem;
  }
  .overlay .overlay-text-wrapper .overlay-paragraph-label {
    font-size: 1.2rem;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .users-splash .content {
    width: 70%;
  }
}

/* XX-Large devices larger desktops, 1400px and up */
@media (min-width: 1400px) {
  .users-splash .content {
    width: 40%;
  }
}
