body {
      font-family: 'Poppins', sans-serif;
      background: rgb(240, 242, 250) !important;
      
      margin: 0;
      color: #333;
    }


    .main {
      /* display: flex; */
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .main-log {
      align-items: center;
      height: 100vh;
    }

    .main-img h2 {
      padding: 0px 100px;
      font-weight: 800;
      color: #444;
    }

    .snup {
      font-size: 12px;
    }

    .snup a {
      color: rgb(73, 204, 104);
      font-weight: bold;
      text-decoration: none;
    }

    .main-img p {
      padding: 0px 100px;
      margin-bottom: 20px;
      color: #888;
      font-size: 18px
    }

    .form-wrapper {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      width: 400px;
      max-width: 90%;
      animation: fadeIn 0.6s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .form-header {
      background: linear-gradient(135deg, rgb(73, 204, 104), #00c6ff);
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .progress-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 20px 0;
      padding: 0 30px;
    }

    .progress-step {
      width: 26px;
      height: 26px;
      background: #ccc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 13px;
      position: relative;
      z-index: 1;
    }

    .progress-step.active {
      background: rgb(73, 204, 104);
    }

    .progress-step::after {
      content: '';
      position: absolute;
      width: 140%;
      height: 3px;
      background: #ccc;
      top: 50%;
      left: 100%;
      transform: translateY(-50%);
      z-index: 0;
    }

    .progress-step:last-child::after {
      display: none;
    }

    .progress-step.active::after {
      background: rgb(73, 204, 104);
    }

    .form-container {
      padding: 30px;
    }

    .step {
      display: none;
      animation: fadeSlide 0.4s ease;
    }

    .step.active {
      display: block;
    }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    label {
      font-weight: 600;
      margin-bottom: 3px;
      display: block;
      font-size: 14px;
      color: #555;
    }

    input {
      width: 100%;
      padding: 10px 0px 10px 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 15px;
      margin-bottom: 15px !important;
      transition: border 0.3s;
    }

    input:focus {
      outline: none;
      border-color: rgb(73, 204, 104);
      box-shadow: 0 0 3px rgb(12, 133, 40);
    }

    button {
      width: 100%;
      padding: 12px;
      background: rgb(73, 204, 104);
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 100px !important;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: rgb(12, 133, 40);
    }

    .button {
      width: 100%;
      padding: 12px;
      background: rgb(73, 204, 104);
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
    }

    .button:hover {
      background: rgb(12, 133, 40);
    }

    .back-btn {
      background: #6c757d;
      margin-top: 10px;
    }

    .error {
      color: red;
      font-size: 13px;
      margin-top: -10px;
      margin-bottom: 10px;
    }

    .success {
      color: green;
      text-align: center;
      font-weight: 500;
    }

    p {
      text-align: center;
      color: #555;
    }

    .iti {
        width: 100%;
    }

    .iti input {
        width: 100% !important;
    }

    .s2 {
        margin-top: 0px !important;
    }