/* Default background properties */
body {
  /* background: linear-gradient(-45deg, #c24924ba, #e48d13c2, #fc5b0a, #ecc70af6); */
  background: linear-gradient(-45deg, #df7757, #d46d6d, #f3aa35, #ffa726);
  background-size: 400% 400%;
  animation: gradient 13s ease infinite;
  height: 100vh;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.center-box {
  padding: 30px; /* Larger padding for a bigger box */
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Slightly larger shadow */
  border-radius: 10px;
  text-align: center;
  margin: 10px;
  width: 700px;
  overflow: auto;
}

.btn-custom {
  background-color: #ff6700 !important;
}

.btn-empowerex {
  display: inline-block;
  background-color: #ff6700;
  color: white;
  font-size: 16px !important;
  font-weight: bold;
  padding: 5px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pdf-frame {
  width: 600px;
  height: 600px;
}

@media (max-width: 700px) {
  .pdf-frame {
    width: 300px;
    height: 400px;
  }
}
