body{
  background-color: #e0a800; /* Cor de fundo suave */
  font-family: Arial, sans-serif; /* Fonte padrão */
}
.container{
  background-color: #e0a800; /* Cor de fundo suave */
  font-family: Arial, sans-serif; /* Fonte padrão */
}
/* Estilos básicos para o formulário multistep */
.form-step {
  display: none; /* Esconde todas as etapas por padrão */
}
.form-step.active {
  display: block; /* Mostra apenas a etapa ativa */
}
.form-container {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
}
.form-select {
  border-radius: 10px; /* Bordas arredondadas */
  font-size: 1rem; /* Tamanho de fonte consistente */
}
.form-control {
  height: 20px; /* Define altura consistente */
  border-radius: 10px; /* Bordas arredondadas */
  font-size: 1rem; /* Tamanho de fonte consistente */
}
.moneyflow-header {
  display: flex;
  align-items: center;
  justify-content: center; /* Alinha à esquerda como no PDF */
  margin-bottom: 20px;
  width: 100%;
  height: 10vh;
}
.moneyflow-header img {
  width: 25%;
}

.section-title {
  margin-top: 25px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-weight: bold;
  color: #333;
  font-size: 1.5rem; /* Tamanho de fonte consistente */

}

.btn-avancar{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.btn {
  width: 150px; /* Define uma largura fixa */
  height: 50px; /* Define uma altura fixa */
  display: inline-flex; /* Garante alinhamento interno */
  align-items: center; /* Centraliza verticalmente o conteúdo */
  justify-content: center; /* Centraliza horizontalmente o conteúdo */
  font-size: 1.5rem; /* Tamanho de fonte consistente */
  font-weight: bold; /* Texto em negrito */
  border-radius: 10px; /* Bordas arredondadas */
}
.btn-moneyflow {
  background-color: #5c5d5f; /* Cor amarela do MoneyFlow */
  border-color: #5c5d5f;
  color: #f2f2f3; /* Texto escuro */
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px 30px;
  border-radius: 10px;
}
.btn-moneyflow:hover {
  color: #333;
}

#credito_ajuda {
  border-radius: 10px !important;
}
.d-flex {
  display: flex;
  align-items: center; /* Alinha os botões verticalmente */
  justify-content: flex-end; /* Espaça os botões igualmente */
  margin-top: 20px; /* Ajusta o espaçamento */
}

.btn-avancar.mb-3 {
  display: flex;
  justify-content: flex-end; /* Alinha o botão "Avançar" à direita */
  margin-top: 20px;
}
.d-none {
  display: none !important;
}
.is-invalid {
  border: 2px solid red;
  background-color: #ffe6e6;
}
.progress-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 50px;
}

.progress-points {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.point {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background-color: #f3f3f3;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.point.active {
  background-color: #5c5d5f;
}

span.footer {
  width: 51%;
  font-size: 1rem;
  color: #ffffff;
  padding: 5% 10%;
}

.footer-container {
  background: #666666;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}
hr.footer-line {
  margin-bottom: -5px;
  border: none;
  border-top: 4px dotted #fff;
  position: relative;
  opacity: 1;
}

footer .logo-mf {
  width: 15%;
}
@media (max-width: 768px) {
  .moneyflow-header img {
    width: 50%;
  }
  .logo-mf {
    width: 40%;
    height: auto;
    padding: 0 0 20px;
    margin-top: 45px;
  }
  .footer .logo-mf {
    width: 25%;
  }
  span.footer {
    font-size: 0.55rem;
    width: 55%;
    color: #ffffff;
    padding: 5%;
  }
}
