.section-cadastro {
    position: relative;
    background: url('/img/layoutV2/assets/BG-Cadastro-Login.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em 1em;
    height: 80vh;
    overflow: hidden; /* Para garantir que o ::before não ultrapasse os limites */
  }
  
  .section-cadastro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Ajuste a opacidade conforme necessário */
    z-index: 1;
  }
  
  .section-cadastro > * {
    position: relative;
    z-index: 2; /* Garante que o conteúdo fique acima da sobreposição */
  }
  

.cadastro-container {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 700px;
    text-align: center;
  }

  h2 {
    margin-bottom: 1em;
    color: #681C7B;
  }

  .progress-steps {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2em;
  }

  .step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s;
  }

  .step.active {
    background-color: #681C7B;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }

  .step-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  input {
    padding: 0.8em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
  }

  button {
    padding: 0.8em;
    background-color: #681c7b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  button:hover {
    background-color: #4b125a;
  }

  .hidden {
    display: none;
  }