* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Make sure the body and html take the full height */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Ensure the content takes the full height and pushes footer down */
.content-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* Makes the main content take available space */
}

.left h1 span {
  color: #EA5413;
}

.btn-custom {
  background-color: #B88B28;
  color: white;
}

.btn-custom:hover {
  background-color: #ce9c2f;
  color: white;
  cursor: pointer;
}

.bg-orange {
  background-color: #EA5413;
}

.red-bg {
  position: absolute;
  background-color: #EA5413;
  width: 45%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
}
/* HTML: <div class="loader"></div> */
#full-loader {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
          radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px no-repeat,
          conic-gradient(#0000 30%, #ffa516);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
   100% {
     transform: rotate(1turn);
   }
 }

.banner {
  background-color: #EA5413;
  padding: 48px;
  color: white;
  text-align: center;
}

.banner h1 {
  font-size: 36px;
  font-weight: 700;
}

.content {
  max-width: 800px;
  margin: 40px auto;
  background-color: #FDF7EB;
  padding: 40px;
  border-radius: 12px;
}

@media screen and (max-width: 800px) {
  .content {
    padding: 20px;
  }
}

.back {
  color: #B88B28;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
  text-decoration: none;
}

.info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 16px;
}

.info-row b {
  font-weight: 600;
}

.btn-custom-primary {
  background-color: #B88B28;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  width: fit-content;
}

.btn-custom-outline-primary{
  background-color: transparent;
  border-color: #B88B28;
  color: #B88B28;
}

.btn-custom-outline-primary:hover{
  background-color:#fff1d1;
  color: #B88B28;
}

footer {
  margin-top: auto; /* Pushes footer to the bottom */
}

.cert-img{
  max-width: 450px;
}

.logo {
  max-width: 300px;
  width: 100%; 
  height: auto;
}

@media (max-width: 1024px) {
  .logo{
    max-width: 200px;
  }

  .cert-img{
    max-width: 300px;
  }
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}
/*Custom styles*/

