.btn-success {
  background-color: #1ab394;
  border: 0;
  text-transform: uppercase
}

.btn-outline-secondary{
  text-transform: uppercase
}

.btn-success:hover {
  background-color: #1ab394;
}

.bg-success {
  background-color: #1ab394;;
}

.minhafonte {
    color:#1ab394;
}

.fundocinzaescuro {
    background-color: #2f4050;
}

.fundocinzamedio {
    background-color: #e4e4e4;
}

.space40 {
    height: 40px;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.76);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spinner-ball {
  width: 40px;
  height: 40px;
  border: 4px solid #1ab394;
  border-top: 4px solid #023530;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 10px;
}

.loading-text {
  font-size: 1.2rem;
  color: #333;
  text-align: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.round-badge {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #1ab394;
}