    /* Accord Brand Colors */
    :root {
        --primary-yellow: #F1E600;
        --primary-green: #02602E;
        --secondary-green: #04A758;
        --accent-red: #F80809;
        --white: #FAFEFD;
        --dark: #1a1a1a;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--dark);
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

    /* Advanced Animated Background */
    .animated-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 50%, var(--primary-green) 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
        opacity: 0.95;
        overflow: hidden;
    }

    /* Floating Particles Effect */
    .animated-bg::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: 
            radial-gradient(circle at 20% 50%, rgba(241, 230, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(241, 230, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(4, 167, 88, 0.2) 0%, transparent 50%);
        animation: rotate 20s linear infinite;
        top: -50%;
        left: -50%;
    }

    /* Grid Pattern */
    .animated-bg::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

    /* Additional Background Layers */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background: 
            radial-gradient(ellipse at top, rgba(241, 230, 0, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at bottom, rgba(4, 167, 88, 0.15) 0%, transparent 50%);
        animation: pulseGlow 8s ease-in-out infinite;
        pointer-events: none;
    }

    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background-image: 
            repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.02) 35px, rgba(255, 255, 255, 0.02) 70px),
            repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.02) 35px, rgba(255, 255, 255, 0.02) 70px);
        animation: slidePattern 20s linear infinite;
        pointer-events: none;
    }

    @keyframes pulseGlow {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }

    @keyframes slidePattern {
        0% { transform: translate(0, 0); }
        100% { transform: translate(70px, 70px); }
    }

    /* Wave Animation Effect */
    @keyframes wave {
        0% { transform: translateX(0) translateY(0) rotate(0deg); }
        50% { transform: translateX(-25px) translateY(-10px) rotate(5deg); }
        100% { transform: translateX(0) translateY(0) rotate(0deg); }
    }

    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

/* Main Container */
.container-fluid {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
}

.registration-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

    /* Logo Section */
    .logo-section {
        animation: fadeInDown 0.8s ease-out;
    }

    .logo-img {
        max-width: 150px;
        height: auto;
        margin-bottom: 20px;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    .main-title {
        font-size: 3rem;
        font-weight: 800;
        color: var(--white);
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 1.2rem;
        color: var(--primary-yellow);
        font-weight: 500;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    }

    /* Progress Indicator */
.progress-container {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
    gap: 5px;
    flex-wrap: nowrap;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 0;
    flex-shrink: 1;
}

    .step-number {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        margin: 0 auto 5px;
        transition: all 0.3s ease;
        border: 3px solid rgba(255, 255, 255, 0.3);
        position: relative;
        z-index: 3;
    }

    .step.active .step-number {
        background: var(--primary-yellow);
        color: var(--primary-green);
        transform: scale(1.1);
        box-shadow: 0 5px 20px rgba(241, 230, 0, 0.5);
        border-color: var(--primary-yellow);
    }

    .step.completed .step-number {
        background: var(--secondary-green);
        color: var(--white);
    }

    .step-label {
        font-size: 0.85rem;
        color: var(--white);
        font-weight: 500;
        opacity: 0.7;
        transition: all 0.3s ease;
        margin-top: 15px;
        padding-top: 5px;
        position: relative;
        z-index: 2;
    }

    .step.active .step-label {
        opacity: 1;
        font-weight: 600;
        color: var(--primary-yellow);
    }

    .progress-bar {
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        margin-top: 10px;
        z-index: 1;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-green));
        border-radius: 10px;
        transition: width 0.5s ease;
        width: 0%;
        box-shadow: 0 0 10px rgba(241, 230, 0, 0.5);
    }

    /* Form Steps */
    .form-step {
        display: none;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .form-step.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
        animation: slideInRight 0.5s ease-out;
    }

    .form-step.prev-active {
        transform: translateX(-50px);
        opacity: 0;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Step Card */
.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

    .step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-green), var(--accent-red));
    }

    .step-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .step-header i {
        font-size: 3rem;
        color: var(--primary-green);
        margin-bottom: 15px;
        display: block;
    }

    .step-header h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-green);
        margin: 0;
    }

    .step-description {
        text-align: center;
        color: #666;
        margin-bottom: 30px;
        font-size: 1rem;
    }

    /* Form Elements */
    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        font-weight: 600;
        color: var(--primary-green);
        margin-bottom: 8px;
        display: block;
        font-size: 0.95rem;
    }

    .input-wrapper {
        position: relative;
    }

    .input-wrapper i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--secondary-green);
        font-size: 1.2rem;
        z-index: 1;
    }

    .input-wrapper .form-control,
    .input-wrapper select,
    .input-wrapper textarea {
        padding-left: 45px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        height: 50px;
    }

    .input-wrapper textarea {
        height: auto;
        padding-top: 12px;
        resize: vertical;
    }

    .input-wrapper .form-control:focus,
    .input-wrapper select:focus,
    .input-wrapper textarea:focus {
        border-color: var(--secondary-green);
        box-shadow: 0 0 0 0.2rem rgba(4, 167, 88, 0.15);
        outline: none;
    }

    .input-wrapper .form-control:read-only {
        background-color: #f8f9fa;
        cursor: not-allowed;
    }

    .form-control.is-invalid {
        border-color: var(--accent-red);
        box-shadow: 0 0 0 0.2rem rgba(248, 8, 9, 0.15);
    }

    .form-control.is-invalid:focus {
        border-color: var(--accent-red);
        box-shadow: 0 0 0 0.2rem rgba(248, 8, 9, 0.25);
    }

    /* NIN Status */
    .nin-status {
        margin-top: 10px;
        padding: 10px;
        border-radius: 8px;
        display: none;
        animation: slideDown 0.3s ease;
    }

    .nin-status.verified {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        display: block;
    }

    .nin-status.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        display: block;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Buttons */
    .btn {
        padding: 12px 30px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
        color: var(--white);
        box-shadow: 0 5px 15px rgba(4, 167, 88, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(4, 167, 88, 0.4);
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    }

    .btn-secondary {
        background: #6c757d;
        color: var(--white);
    }

    .btn-secondary:hover {
        background: #5a6268;
        transform: translateY(-2px);
    }

    .btn-success {
        background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
        color: var(--white);
        box-shadow: 0 5px 15px rgba(4, 167, 88, 0.3);
    }

    .btn-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(4, 167, 88, 0.4);
    }

    .btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
    }

    .step-actions {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        gap: 15px;
    }

    .btn-next,
    .btn-prev {
        min-width: 150px;
        justify-content: center;
    }

    /* Camera Container */
    .camera-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px;
        border-radius: 15px;
        overflow: hidden;
        background: #000;
        aspect-ratio: 4/3;
    }

    #video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .camera-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .face-guide {
        width: 70%;
        height: 70%;
        border: 3px dashed var(--primary-yellow);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.7; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.05); }
    }

    .captured-photo-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    #capturedPhoto {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .retake-photo {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 10;
    }

    .camera-controls {
        text-align: center;
        margin-bottom: 20px;
    }

    .btn-capture {
        padding: 15px 40px;
        font-size: 1.1rem;
        border-radius: 50px;
        background: linear-gradient(135deg, var(--accent-red), #ff4444);
        box-shadow: 0 5px 20px rgba(248, 8, 9, 0.4);
    }

    .btn-capture:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(248, 8, 9, 0.5);
    }

    /* Review Section */
    .review-section {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 25px;
    }

    .review-item {
        padding: 15px 0;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .review-item:last-child {
        border-bottom: none;
    }

    .review-item strong {
        color: var(--primary-green);
        font-weight: 600;
        min-width: 150px;
    }

    .review-item span {
        color: #333;
        text-align: right;
        flex: 1;
    }

    .review-photo {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        border: 3px solid var(--secondary-green);
    }

    /* Success Modal */
    .success-modal-content {
        border-radius: 20px;
        border: none;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        padding: 0;
        max-height: 90vh;
    }

    .success-modal-content .modal-body {
        padding: 40px 30px;
        max-height: calc(90vh - 120px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Custom scrollbar for modal */
    .success-modal-content .modal-body::-webkit-scrollbar {
        width: 8px;
    }

    .success-modal-content .modal-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .success-modal-content .modal-body::-webkit-scrollbar-thumb {
        background: var(--secondary-green);
        border-radius: 10px;
    }

    .success-modal-content .modal-body::-webkit-scrollbar-thumb:hover {
        background: var(--primary-green);
    }

    .success-icon-wrapper {
        position: relative;
        display: inline-block;
        margin-bottom: 30px;
    }

    .success-icon {
        font-size: 6rem;
        color: var(--secondary-green);
        animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
        z-index: 2;
    }

    .success-checkmark-animation {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(4, 167, 88, 0.1);
        animation: ripple 1.5s ease-out infinite;
        z-index: 1;
    }

    @keyframes scaleIn {
        0% {
            transform: scale(0);
            opacity: 0;
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes ripple {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0;
        }
    }

    .success-title {
        color: var(--primary-green);
        font-weight: 800;
        font-size: 2rem;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .success-subtitle {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 30px;
        font-weight: 400;
    }

    .generating-card-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 15px;
        padding: 30px 20px;
        margin: 30px 0;
        border: 2px dashed var(--secondary-green);
    }

    .generating-spinner {
        margin-bottom: 20px;
    }

    .generating-spinner .spinner-border {
        width: 3rem;
        height: 3rem;
        border-width: 4px;
        color: var(--secondary-green);
    }

    .generating-text {
        color: var(--primary-green);
        font-size: 1.1rem;
        font-weight: 500;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .generating-text i {
        font-size: 1.3rem;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.5;
        }
    }

    .membership-card-wrapper {
        margin: 30px 0;
        animation: fadeInUp 0.6s ease-out;
    }

    .card-ready-message {
        background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
        color: white;
        padding: 15px 25px;
        border-radius: 10px;
        margin-bottom: 20px;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .card-ready-message i {
        font-size: 1.5rem;
        margin-right: 10px;
        animation: bounceIn 0.6s ease-out;
    }

    @keyframes bounceIn {
        0% {
            transform: scale(0);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    }

    .success-actions {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 2px solid #e9ecef;
    }

    .success-actions .btn {
        padding: 12px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(4, 167, 88, 0.3);
        transition: all 0.3s ease;
    }

    .success-actions .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(4, 167, 88, 0.4);
    }

    .success-actions .btn i {
        margin-right: 8px;
    }

    /* Download Buttons */
    .download-buttons {
        margin: 30px 0;
        padding: 20px 0;
    }

    .download-buttons-row {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .download-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        min-width: 180px;
    }

    .download-buttons .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .download-buttons .btn i {
        margin-right: 8px;
    }

    .download-buttons .btn-success {
        background: var(--secondary-green);
        border-color: var(--secondary-green);
    }

    .download-buttons .btn-danger {
        background: #dc3545;
        border-color: #dc3545;
    }

    @media (max-width: 576px) {
        .download-buttons-row {
            flex-direction: column;
        }

        .download-buttons .btn {
            width: 100%;
        }
    }

    /* Membership Card */
    .membership-card {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        border-radius: 20px;
        padding: 30px;
        color: var(--white);
        margin: 20px auto;
        max-width: 400px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .membership-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(241, 230, 0, 0.1) 0%, transparent 70%);
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .card-logo {
        max-width: 80px;
        height: auto;
    }

    .card-title {
        font-size: 1.5rem;
        font-weight: 800;
        text-align: right;
    }

    .card-body {
        position: relative;
        z-index: 1;
    }

    .card-photo {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 4px solid var(--primary-yellow);
        object-fit: cover;
        margin: 0 auto 20px;
        display: block;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .card-info {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .card-info-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .card-info-item:last-child {
        border-bottom: none;
    }

    .card-info-label {
        font-weight: 600;
        opacity: 0.9;
    }

    .card-qr {
        text-align: center;
        background: var(--white);
        padding: 15px;
        border-radius: 10px;
        display: inline-block;
    }

    .card-qr img {
        width: 150px;
        height: 150px;
    }

    .card-footer {
        text-align: center;
        margin-top: 20px;
        font-size: 0.9rem;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    /* Loading Overlay */
    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .loading-overlay.show {
        display: flex;
    }

    .spinner-border {
        width: 3rem;
        height: 3rem;
    }

    /* Toast Notifications */
    .toast-notification {
        position: fixed;
        top: 20px;
        right: 20px;
        background: var(--white);
        color: var(--dark);
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 10000;
        min-width: 300px;
        max-width: 400px;
        transform: translateX(400px);
        opacity: 0;
        transition: all 0.3s ease;
        border-left: 4px solid;
    }

    .toast-notification.show {
        transform: translateX(0);
        opacity: 1;
    }

    .toast-notification.error {
        border-left-color: var(--accent-red);
    }

    .toast-notification.success {
        border-left-color: var(--secondary-green);
    }

    .toast-notification i {
        font-size: 1.5rem;
    }

    .toast-notification.error i {
        color: var(--accent-red);
    }

    .toast-notification.success i {
        color: var(--secondary-green);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .registration-wrapper {
            padding: 15px;
        }
        
        .main-title {
            font-size: 2.5rem;
        }
        
        .subtitle {
            font-size: 1.1rem;
        }
        
        .step-card {
            padding: 30px;
        }
    }

    @media (max-width: 768px) {
        .container-fluid {
            padding-left: 0;
            padding-right: 0;
        }
        
        .registration-wrapper {
            padding: 10px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .main-title {
            font-size: 1.75rem;
            letter-spacing: 0.5px;
            word-wrap: break-word;
            padding: 0 5px;
        }
        
        .subtitle {
            font-size: 0.95rem;
            padding: 0 5px;
        }
        
        .logo-img {
            max-width: 100px;
            margin-bottom: 10px;
        }
        
        .logo-section {
            margin-bottom: 20px !important;
        }
        
        .progress-container {
            margin-bottom: 20px;
            padding: 0 5px;
        }
        
        .step-card {
            padding: 15px;
            border-radius: 15px;
            margin: 0 5px;
            width: calc(100% - 10px);
            box-sizing: border-box;
        }
        
        .step-header h3 {
            font-size: 1.3rem;
            word-wrap: break-word;
        }
        
        .step-header i {
            font-size: 2rem;
        }
        
        .step-number {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .step-label {
            font-size: 0.6rem;
            margin-top: 8px;
            padding-top: 2px;
            line-height: 1.1;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }
        
        .progress-steps {
            flex-wrap: nowrap;
            margin-bottom: 15px;
            gap: 2px;
            width: 100%;
            overflow: hidden;
        }
        
        .step {
            flex: 1 1 auto;
            min-width: 0;
            margin-bottom: 0;
            padding: 0 2px;
        }
        
        .progress-bar {
            margin-top: 12px;
            height: 3px;
            width: 100%;
        }
        
        .step-actions {
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }
        
        .btn-next,
        .btn-prev {
            width: 100%;
            min-width: auto;
            box-sizing: border-box;
        }
        
        .form-group {
            margin-bottom: 18px;
        }
        
        .input-wrapper .form-control,
        .input-wrapper select,
        .input-wrapper textarea {
            font-size: 0.9rem;
            height: 45px;
            width: 100%;
            box-sizing: border-box;
        }
        
        .camera-container {
            max-width: 100%;
            width: 100%;
        }
        
        .review-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
            padding: 10px 0;
            word-wrap: break-word;
        }
        
        .review-item strong {
            min-width: auto;
        }
        
        .review-item span {
            text-align: left;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .step-description {
            font-size: 0.9rem;
            padding: 0 5px;
        }
    }

    @media (max-width: 576px) {
        .registration-wrapper {
            padding: 8px;
        }
        
        .main-title {
            font-size: 1.5rem;
            letter-spacing: 0;
            padding: 0 3px;
        }
        
        .subtitle {
            font-size: 0.85rem;
            padding: 0 3px;
        }
        
        .logo-img {
            max-width: 80px;
            margin-bottom: 8px;
        }
        
        .logo-section {
            margin-bottom: 15px !important;
        }
        
        .progress-container {
            margin-bottom: 15px;
            padding: 0 3px;
        }
        
        .step-card {
            padding: 12px;
            margin: 0 3px;
            width: calc(100% - 6px);
        }
        
        .step-header h3 {
            font-size: 1.1rem;
        }
        
        .step-header i {
            font-size: 1.75rem;
        }
        
        .step-number {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
            margin-bottom: 4px;
        }
        
        .step-label {
            font-size: 0.55rem;
            margin-top: 6px;
            padding-top: 2px;
            line-height: 1;
        }
        
        .progress-bar {
            margin-top: 10px;
            height: 2.5px;
        }
        
        .btn {
            padding: 10px 15px;
            font-size: 0.85rem;
            width: 100%;
        }
        
        .step-description {
            font-size: 0.85rem;
            padding: 0 3px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            font-size: 0.85rem;
        }
        
        .input-wrapper .form-control,
        .input-wrapper select,
        .input-wrapper textarea {
            font-size: 0.85rem;
            height: 42px;
            padding-left: 38px;
        }
        
        .input-wrapper i {
            font-size: 0.95rem;
            left: 10px;
        }
        
        .review-section {
            padding: 12px;
        }
        
        .review-item {
            padding: 8px 0;
            font-size: 0.85rem;
        }
        
        .review-photo {
            width: 70px;
            height: 70px;
        }
        
        .toast-notification {
            min-width: 280px;
            max-width: calc(100vw - 40px);
            right: 10px;
            left: 10px;
            top: 10px;
        }
    }

    @media (max-width: 400px) {
        .registration-wrapper {
            padding: 5px;
        }
        
        .main-title {
            font-size: 1.3rem;
        }
        
        .subtitle {
            font-size: 0.8rem;
        }
        
        .logo-img {
            max-width: 70px;
        }
        
        .step-card {
            padding: 10px;
            margin: 0 2px;
            width: calc(100% - 4px);
        }
        
        .step-label {
            font-size: 0.5rem;
            margin-top: 5px;
        }
        
        .step-number {
            width: 28px;
            height: 28px;
            font-size: 0.75rem;
        }
        
        .progress-bar {
            margin-top: 8px;
            height: 2px;
        }
        
        .step-header h3 {
            font-size: 1rem;
        }
        
        .step-header i {
            font-size: 1.5rem;
        }
        
        .btn {
            padding: 8px 12px;
            font-size: 0.8rem;
        }
        
        .input-wrapper .form-control,
        .input-wrapper select,
        .input-wrapper textarea {
            font-size: 0.8rem;
            height: 40px;
            padding-left: 35px;
        }
    }

    /* Animations */
    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-10px); }
        75% { transform: translateX(10px); }
    }

    .shake {
        animation: shake 0.5s ease;
    }