
        :root {
            --primary: #3949ab;
            --secondary: #5c6bc0;
            --accent: #1a237e;
            --light: #f5f7ff;
            --dark: #283593;
        }
    
        
      
        
        .custom-container {
            width: 100%;
           
            margin: 30px auto;
            padding: 0 15px;
        }
        
        .custom-form-container {
            background-color: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .custom-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .custom-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .custom-header-flex {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .custom-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .custom-logo img {
            max-width: 100%;
            max-height: 100%;
        }
        
        .custom-form-title {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 0;
            font-size: 1.5rem;
            text-transform: uppercase;
        }
        
        .custom-form-subtitle {
            color: var(--secondary);
            font-weight: 600;
            font-size: 1.25rem;
            text-transform: uppercase;
        }
        
        .custom-row {
            display: flex;
            flex-wrap: wrap;
            margin-left: -15px;
            margin-right: -15px;
            margin-bottom: 15px;
        }
        
        .custom-col-full {
            padding-left: 15px;
            padding-right: 15px;
            width: 100%;
        }
        
        .custom-col-half {
            padding-left: 15px;
            padding-right: 15px;
            width: 100%;
        }
        
        .custom-col-third {
            padding-left: 15px;
            padding-right: 15px;
            width: 100%;
        }
        
        .custom-col-quarter {
            padding-left: 15px;
            padding-right: 15px;
            width: 100%;
        }
        
        .custom-col-two-thirds {
            padding-left: 15px;
            padding-right: 15px;
            width: 100%;
        }
        
        @media (min-width: 768px) {
            .custom-col-quarter {
                width: 25%;
            }
            .custom-col-third {
                width: 33.333333%;
            }
            .custom-col-half {
                width: 50%;
            }
            .custom-col-two-thirds {
                width: 66.666667%;
            }
            .custom-col-full {
                width: 100%;
            }
        }
        
        .custom-form-control {
            display: block;
            width: 100%;
            padding: 10px 15px;
            font-size: 1rem;
            line-height: 1.5;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ddd;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }
        
        .custom-form-control:focus {
            border-color: var(--secondary);
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(92, 107, 192, 0.25);
        }
        
        .custom-form-label {
            display: inline-block;
            color: #555;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .custom-form-section {
            background-color: var(--light);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }
        
        .custom-form-section-title {
            color: var(--primary);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .custom-photo-upload {
            width: 150px;
            height: 180px;
            border: 2px dashed #ccc;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
        }
        
        .custom-photo-upload:hover {
            border-color: var(--secondary);
            background-color: #f0f2f5;
        }
        
        .custom-photo-preview {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }
        
        .custom-upload-icon {
            font-size: 32px;
            color: #aaa;
            margin-bottom: 10px;
        }
        
        .custom-upload-label {
            cursor: pointer;
            padding: 8px 15px;
            background-color: var(--primary);
            color: white;
            border-radius: 5px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .custom-upload-label:hover {
            background-color: var(--dark);
        }
        
        .custom-upload-input {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            cursor: pointer;
        }
        
        .custom-radio-group {
            margin-top: 10px;
        }
        
        .custom-radio {
            display: inline-block;
            margin-right: 15px;
        }
        
        .custom-radio input[type="radio"] {
            width: 18px;
            height: 18px;
            margin-right: 5px;
            vertical-align: middle;
        }
        
        .custom-radio label {
            vertical-align: middle;
        }
        
        .custom-divider {
            border-top: 1px solid #dee2e6;
            margin: 30px 0;
            position: relative;
        }
        
        .custom-divider::after {
            content: "Declaration";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #fff;
            padding: 0 15px;
            color: var(--primary);
            font-weight: 500;
        }
        
        .custom-office-use {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px solid #e9ecef;
            position: relative;
        }
        
        .custom-office-use::before {
            content: "FOR OFFICE USE ONLY";
            position: absolute;
            top: -12px;
            left: 20px;
            background-color: #fff;
            padding: 0 10px;
            font-weight: 600;
            color: #6c757d;
            font-size: 14px;
        }
        
        .custom-btn {
            display: inline-block;
            font-weight: 500;
            text-align: center;
            vertical-align: middle;
            cursor: pointer;
            padding: 10px 30px;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            font-size: 1rem;
            margin-right: 10px;
        }
        
        .custom-btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
        }
        
        .custom-btn-primary:hover {
            background-color: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .custom-btn-secondary {
            background-color: #6c757d;
            border-color: #6c757d;
            color: white;
        }
        
        .custom-btn-secondary:hover {
            background-color: #5a6268;
            border-color: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .custom-buttons-container {
            text-align: center;
            margin-top: 20px;
        }
        
        .custom-checkbox {
            display: block;
            margin-bottom: 10px;
        }
        
        .custom-checkbox input[type="checkbox"] {
            margin-right: 5px;
            vertical-align: middle;
        }
        
        .custom-checkbox label {
            vertical-align: middle;
        }
        
        .custom-alert {
            padding: 10px 15px;
            margin: 10px 0;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        
        .custom-alert-info {
            background-color: #cfe2ff;
            border: 1px solid #b6d4fe;
            color: #084298;
        }
        
        .custom-card {
            background-color: #fff;
            border: 1px solid #e9ecef;
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .custom-card-header {
            padding: 10px 15px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
        }
        
        .custom-card-body {
            padding: 15px;
        }
        
        .custom-required::after {
            content: '*';
            color: #dc3545;
            margin-left: 3px;
        }
        
        .custom-mb {
            margin-bottom: 15px;
        }
        
        .custom-mt {
            margin-top: 15px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .custom-form-container {
                padding: 20px 15px;
            }
            
            .custom-photo-upload {
                margin: 20px auto;
            }
        }
    