*{
    margin: 0;
    padding: 0 ;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

 body {
            background: linear-gradient(135deg,  #0ec2e6 0%, #0d0221 100%),url('../../img/builders.jpeg');
            background-size: cover;
            background-blend-mode: overlay;
            background-repeat: no-repeat;
            background-position: center;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .row{
            --bs-gutter-x: 1.625rem;
            --bs-gutter-y: 0;
            display:flex;
            flex-wrap:wrap;
            margin-top:calc(-1*var(--bs-gutter-y));
            margin-right:calc(-0.5*var(--bs-gutter-x));
            margin-left:calc(-0.5*var(--bs-gutter-x))
        }
        
        .__container {
            width: 100% !important;
            margin:0 !important;
            --bs-gutter-x: 0 !important;
            max-width: 600px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }
        
        .header h1 {
            font-weight: 600;
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .header p {
            opacity: 0.9;
        }
        
        .form-container {
            padding: 25px;
        }
        
        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-indicator::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background: #ddd;
            z-index: 0;
        }
        
        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ddd;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .step.active .step-circle {
            background: #3498db;
            color: white;
        }
        
        .step.completed .step-circle {
            background: #27ae60;
            color: white;
        }
        
        .step-label {
            font-size: 12px;
            color: #666;
        }
        
        .step.active .step-label {
            color: #3498db;
            font-weight: 600;
        }
        
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .input--group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .input--group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .input--group label i {
            margin-right: 10px;
            color: #2c3e50;
        }
        
        .input--group input, 
        .input--group select, 
        .input--group textarea {
            width: 100% !important;
            padding: 14px !important;
            border: 2px solid #ddd !important;
            border-radius: 8px !important;
            font-size: 16px !important;
            transition: all 0.3s;
        }
      
        .form-control{
            padding: 14px !important;
            border: 2px solid #ddd !important;
            border-radius: 8px !important;
            font-size: 16px !important;
            transition: all 0.3s !important;

        }
        .form-control:focus{
            border-color: #0ec2e6 !important;
            outline: none !important;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        .input-group input:focus, 
        .input-group select:focus, 
        .input-group textarea:focus {
            border-color: #0ec2e6 !important;
            outline: none !important;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2) !important;
        }
        
        .input-group.error input,
        .input-group.error select {
            border-color: #ff3860 !important;
        }
        
        .error-message {
            color: #ff3860 !important;
            font-size: 14px !important;
            margin-top: 5px;
            display: none;
        }
        
        .input--group.error .error-message {
            display: block;
        }
        
        .info-card {
            background: #e3f2fd;
            border-left: 4px solid #0ec2e6;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .info-card h5 {
            color: #0ec2e6be;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .info-card p {
            color: #555;
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .info-card ol {
            margin-left: 20px;
            color: #555;
        }
        
        .info-card ol li {
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .info-card strong {
            color: #0ec2e6be;
        }
        
        .commitment-details {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }
        
        .commitment-details.show {
            display: block;
        }
        
        .commitment-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        
        .commitment-item:last-child {
            border-bottom: none;
        }
        
        .commitment-item label {
            font-weight: 600;
            color: #333;
        }
        
        .commitment-item span {
            color: #666;
        }
        
        .btn {
            padding: 14px 24px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
            width: 100%;
            justify-content: center;
        }
        
        .btn-primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }
        
        .btn-secondary {
            background: #95a5a6;
            color: white;
        }
        
        .btn-secondary:hover {
            background: #7f8c8d;
        }
        
        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .btn-group {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .spinner {
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 3px solid white;
            width: 16px;
            height: 16px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .success-message {
            display: none;
            text-align: center;
            padding: 40px 30px;
        }
        
        .success-message.show {
            display: block;
        }
        
        .success-message i {
            font-size: 60px;
            color: #27ae60;
            margin-bottom: 20px;
        }
        
        .success-message h2 {
            color: #2e7d32;
            margin-bottom: 10px;
        }
        
        .success-message p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Toast notification styles */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .toast {
            padding: 16px 24px;
            border-radius: 8px;
            color: white;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            animation: slideIn 0.3s ease-out;
            max-width: 350px;
            min-width: 300px;
        }
        
        .toast.success {
            background-color: #27ae60 !important;
        }
        
        .toast.error {
            background-color: #e74c3c !important;
        }
        
        .toast.warning {
            background-color: #f39c12 !important;
        }
        
        .toast.info {
            background-color: #3498db !important;
        }
        
        .toast i {
            margin-right: 12px;
            font-size: 20px;
        }
        
        .toast .toast-content {
            flex: 1;
        }
        
        .toast .toast-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 18px;
            margin-left: 12px;
        }
        .input-group-text {
            background-color: transparent;
            border-left: none;
        }
        .form-control.form-control-append{
            border-right: none !important;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }
        
        @media (max-width: 600px) {
            .container {
                border-radius: 12px;
            }
            
            .header {
                padding: 20px;
            }
            
            .header h1 {
                font-size: 1.5rem;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .btn-group {
                flex-direction: column;
            }
            
            .toast-container {
                left: 20px;
                right: 20px;
            }
            
            .toast {
                max-width: 100%;
                min-width: auto;
            }
            
            .step-label {
                font-size: 10px;
            }
        }