
        :root {
            --primary-color: #3498db;
            --secondary-color: #2ecc71;
            --danger-color: #e74c3c;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
            --gray-color: #95a5a6;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .wizand-container {
            max-width: 900px;
            margin: 30px auto;
            padding: 0 15px;
        }

        .wizand-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .wizand-card-header {
            background: var(--dark-color);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .wizand-card-header h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .wizand-progress-bar {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 20px 0 30px;
        }

        .wizand-progress-bar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: #e0e0e0;
            z-index: 1;
            transform: translateY(-50%);
        }

        .wizand-progress-step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e0e0e0;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            font-weight: bold;
            transition: var(--transition);
        }

        .wizand-progress-step.active {
            background: var(--primary-color);
            color: white;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
        }

        .wizand-progress-step.completed {
            background: var(--secondary-color);
            color: white;
        }

        .wizand-form-step {
            display: none;
            padding: 30px;
            animation: fadeIn 0.5s ease;
        }

        .wizand-form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .wizand-form-section-title {
            color: var(--dark-color);
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f1f1;
        }

        .wizand-form-group {
            margin-bottom: 20px;
        }

        .wizand-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .wizand-form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 16px;
            transition: var(--transition);
        }

        .wizand-form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            outline: none;
        }

        .wizand-form-control[readonly] {
            background-color: #f9f9f9;
        }

        .wizand-form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }

        .wizand-col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 10px;
        }

        .wizand-input-group {
            display: flex;
            align-items: center;
        }

        .wizand-input-group .wizand-form-control {
            flex: 1;
        }

        .wizand-input-group-append {
            margin-left: 10px;
        }

        .wizand-spinner-border {
            width: 20px;
            height: 20px;
            border: 2px solid currentColor;
            border-right-color: transparent;
            border-radius: 50%;
            animation: spinner-border 0.75s linear infinite;
        }

        @keyframes spinner-border {
            to { transform: rotate(360deg); }
        }

        .wizand-form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .wizand-btn {
            padding: 12px 25px;
            border: none;
            border-radius: var(--border-radius);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .wizand-btn i {
            margin: 0 5px;
        }

        .wizand-btn-back {
            background: var(--gray-color);
            color: white;
        }

        .wizand-btn-next {
            background: var(--primary-color);
            color: white;
        }

        .wizand-btn-submit {
            background: var(--secondary-color);
            color: white;
        }

        .wizand-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        .wizand-btn:active {
            transform: translateY(0);
        }

        .wizand-preview-card {
            background: #f9f9f9;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 20px;
        }

        .wizand-preview-section {
            margin-bottom: 25px;
        }

        .wizand-preview-section:last-child {
            margin-bottom: 0;
        }

        .wizand-preview-section h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #ddd;
        }

        .wizand-preview-row {
            display: flex;
            margin-bottom: 10px;
        }

        .wizand-preview-row span {
            flex: 0 0 150px;
            color: #7f8c8d;
            font-weight: 500;
        }

        .wizand-preview-row strong {
            color: var(--dark-color);
            font-weight: 600;
        }

        .wizand-text-danger {
            color: var(--danger-color);
            font-size: 14px;
            margin-top: 5px;
            display: block;
        }

        .wizand-alert {
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .wizand-alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .wizand-alert-danger {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .wizand-is-invalid {
            border-color: var(--danger-color) !important;
        }

        .wizand-required {
            color: var(--danger-color);
        }

        @media (max-width: 768px) {
            .wizand-col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 15px;
            }
            
            .wizand-progress-step {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            
            .wizand-form-step {
                padding: 20px;
            }
        }
        /*------------------*/
        .wizand-form-footer {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.wizand-form-or-divider {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.wizand-or-line {
    display: block;
    height: 1px;
    background-color: #ddd;
    width: 100%;
    position: absolute;
    top: 50%;
    z-index: 1;
}

.wizand-or-text {
    display: inline-block;
    background: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    color: #777;
    font-size: 14px;
}

.wizand-login-link {
    margin-top: 15px;
    font-size: 15px;
    color: #666;
}

.wizand-login-link a {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
}

.wizand-login-link a:hover {
    text-decoration: underline;
}
/*------------*/
.wizand-alert {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 15px;
}

.wizand-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wizand-alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-dismissible {
    padding-right: 40px;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px;
    color: inherit;
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.fade {
    transition: opacity 0.15s linear;
}

.show {
    opacity: 1;
}
/*----------------*/
.wizand-form-group {
    position: relative;
}

.wizand-form-control {
    width: 100%;
    padding-right: 40px; /* Space for eye icon */
}

.toggle-password {
    position: absolute;
    top: 70%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 2;
    font-size: 18px;
}

.toggle-password:hover {
    color: #333;
}

  .otp-input-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .otp-box {
    width: 40px;
    height: 48px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.2s;
  }

  .otp-box:focus {
    border-color: #22c55e;
    outline: none;
  }

  .resend-otp {
    margin-top: 10px;
  }
  
  /*-------------------------*/
  .captcha-reload-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.captcha-reload-btn:hover .reload-icon {
  transform: rotate(360deg);
  transition: transform 0.6s ease;
}
