body {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
}

.footer {
  background-color: #b7b7b7;
  color: #212121 !important;
  text-align: center;
  font-size: 12px;
  padding: 5px 0;
  font-family: sans-serif;
}


.container {
  max-width: 500px;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* .card-header {
  background-color: #007bff;
  color: white;
} */

.card-header h1 {
  margin: 0;
}

.progress {
  height: 30px;
}

#progressBar {
  font-size: 1rem;
  line-height: 30px;
}

.success-header {
  background-color: #28a745 !important; /* Cor verde para indicar sucesso */
  color: white !important; /* Cor do texto */
  border-bottom: 1px solid #ddd; /* Linha de separação sutil */
  font-size: 1.25rem; /* Tamanho maior do texto */
}

.modal-title {
  font-weight: bold; /* Texto em negrito para destaque */
}

.modal-body p {
  font-size: 1rem; /* Tamanho adequado para o texto */
  margin-top: 20px; /* Espaço acima do texto */
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-animation {
  animation: fadeIn 2s; /* Animação de entrada */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
}