@charset "utf-8";
/* CSS Document */

body {
            background: linear-gradient(135deg, #fbdc60 0%, #fbdc60 100%);
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .form-wizard {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .wizard-header {
            background: linear-gradient(135deg, #1b75ba 0%, #0742cd 100%);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .progress-wrapper {
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 5px;
            margin: 1rem 0;
        }
        
        .progress {
            height: 10px;
            border-radius: 50px;
            background: rgba(255,255,255,0.2);
        }
        
        .progress-bar {
            background: linear-gradient(90deg, #4CAF50, #45a049);
            transition: width 0.3s ease;
        }
        
        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
        }
        
        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .step-circle.active {
            background: #4CAF50;
            transform: scale(1.1);
        }
        
        .step-circle.completed {
            background: #4CAF50;
        }
        
        .step-circle.completed::after {
            content: '✓';
            position: static;
        }
        
        .step-content {
            padding: 2rem;
        }
        
        .step-pane {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        .step-pane.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            border: 2px solid #e1e5e9;
            padding: 12px 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
        }
        
        .btn-wizard {
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        /*.btn-primary {
           background: linear-gradient(135deg, #1b75ba 0%, #0742cd 100%);
        }*/
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .btn-secondary {
            background: #6c757d;
        }
        
        .btn-secondary:hover {
            background: #5a6268;
            transform: translateY(-2px);
        }
        
        .invalid-feedback {
            display: block;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        
        .form-control.is-invalid, .form-select.is-invalid {
            border-color: #dc3545;
        }
        
        .form-control.is-valid, .form-select.is-valid {
            border-color: #28a745;
        }
        
        .form-check-input:checked {
            background-color: #667eea;
            border-color: #667eea;
        }
        
        .captcha-box {
            background: #f8f9fa;
            border: 2px dashed #dee2e6;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            margin: 1rem 0;
        }
        
        .captcha-text {
            font-size: 24px;
            font-weight: bold;
            color: #495057;
            font-family: 'Courier New', monospace;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .step-title {
            color: #495057;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .success-message {
            text-align: center;
            padding: 2rem;
        }
        
        .success-icon {
            font-size: 4rem;
            color: #28a745;
            margin-bottom: 1rem;
        }