
    :root {
      --primary: #FFC100;
      --secondary: #FF9200;
      --accent: #00C2FF;
      --text: #1D282C;
      --bg: #FFFFFF;
      --highlight: #f9f9f9;
      --card-bg: #ffffff;
      --card-shadow: rgba(0, 0, 0, 0.08);
    }

    body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .form-wrapper {
      background-color: var(--card-bg);
      box-shadow: 0 4px 20px var(--card-shadow);
      border-radius: 20px;
      max-width: 450px;
      width: 90%;
      padding: 2rem;
      transition: all 0.5s ease;
      position: relative;
    }

    .progress-bar {
      position: absolute;
      top: 0;
      left: 0;
      height: 6px;
      background-color: var(--accent);
      border-radius: 20px 0 0 20px;
      transition: width 0.3s ease;
    }

    .step {
      display: none;
      animation: fadeIn 0.5s ease forwards;
    }

    .step.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    h2 {
      margin-bottom: 1rem;
      color: var(--primary);
    }

    label {
      display: block;
      margin: 0.5rem 0 0.2rem;
    }

    input, select {
      width: 100%;
      padding: 0.6rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      margin-bottom: 1rem;
    }

    button{
      padding: 0.7rem 1.2rem;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      font-weight: bold;
      margin-top: 1rem;
    }
    button.next{
        float:right;
      background-color: var(--secondary);
      color: white;
    }
    button.prev{
        float:left;
        background-color: #ccc;
        color:#888;
    }

    button:hover {
      background-color: var(--primary);
    }