
.content {
        max-width: 90%;
        margin: 40px auto;
        background: #fff;
        padding: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
    }

    .progress-bar {
      display: flex;
      justify-content: space-between;
      margin-bottom: 100px;
      counter-reset: step;
      height: 5px;
      color: #fff;
      background-color: #be335a;
    }

    .progress-step {
        position: relative;
        text-align: center;
        flex: 1;
        color: #be335a;
        font-size: 15px;
        font-weight: 600;
    }

    .progress-step::before {
        content: counter(step);
        counter-increment: step;
        width: 30px;
        height: 30px;
        line-height: 25px;
        border: 2px solid #be335a;
        display: block;
        text-align: center;
        margin: 0 auto 10px;
        border-radius: 50%;
        font-weight: bold;
        margin-top: 10px;
        font-size: 16px;
    }

    .progress-step.active::before,
    .progress-step.complete::before {
        background-color: #be335a;
        color: #ffffff;
    }

    .step {
      display: none;
    }

    .step.active {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    font-size: 16px;
    color: #525252;
    }

    button {
      background-color: #be335a;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 20px;
      margin-right: 20px;
    }

    button:hover {
      background-color: #7d1e39;
    }

    input, textarea {
      width: 100%;
      padding: 10px;
      margin-top: 8px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
    }

    .summary-box {
      background: #f9f9f9;
      padding: 15px;
      border: 1px solid #ddd;
      margin-top: 15px;
      border-radius: 6px;
    }
    #step3{
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
    