.hero-vozac {
    background: url("/images/hero/prijavi-se-kao-vozac.png");
    min-height: 55vh;
    height: auto;
    padding: 50px 5%;
}

.hero-vozac.hero-global::before {
    background-color: rgba(0, 0, 0, 0.2); 
}

 
  .hero-vozac h1 {
    letter-spacing: 5px;
    font-weight: 400;
    font-family: "Lato";
    margin-top: 10px;
  }

  .hero-vozac span {
    letter-spacing: 16px;
    font-weight: 500;
    font-family: "Lato";
  }

  .vozac-main {
    padding: 5vh 5%;
    text-align: center;
    min-height: 30vh;
  }

  .vozac-main button {
    background-color: #ad1929;
    height: 50px;
    width: 180px;
    font-family: "Lato";
    font-size: 20px;
    margin: 30px 0;
    border-radius: 20px;
    border: none;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
  }

  .vozac-main button:hover {
    opacity: 0.8;
    transition: 0.3s;
    border-radius: 15px;
    cursor: pointer;
  }
  

  .step-form-content {
    display: none; /* Sakrij sve korake inicijalno */
  }
  
  .step-form-content.active {
    display: block; /* Prikaži samo aktivan korak */
  }

  @media (max-width: 376px) {
    .hero-vozac {
        height: 50vh;
        justify-content: end;
        padding-bottom: 10vh;
      }
      
  }