/* apply.css */
:root {
            --primary-color: #052c65;
            --primary-light: #0d6efd;
            --primary-dark: #031633;
            --text-dark: #2C3E50;
            --text-light: #7F8C8D;
            --bg-light: #F8F9FA;
            --white: #FFFFFF;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .form_body { 
            font-family: 'Inter', sans-serif; 
            background: linear-gradient(135deg, #F8F9FA 0%, #e7f1ff 100%);
            min-height: 100vh;
            padding: 20px;
        }

       
        .form-container {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            /*max-width: 1200px;*/
            margin: 20px auto 20px;
        }

        

        .form-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 10s ease-in-out infinite;
        }

        .form-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .form-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .progress-container {
            background: var(--white);
            padding: 2rem 4rem;
            border-bottom: 1px solid #E9ECEF;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin-bottom: 2rem;
        }

        .progress-steps::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #E9ECEF;
            transform: translateY(-50%);
            z-index: 1;
        }

        .progress-bar {
            position: absolute;
            top: 50%;
            left: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            transform: translateY(-50%);
            transition: width 0.3s ease;
            z-index: 2;
        }

        .step-indicator {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid #E9ECEF;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-light);
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
        }

        .step-indicator.active {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-color: var(--primary-color);
            color: var(--white);
        }

        .step-indicator.completed {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--white);
        }

        .step-label {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-light);
            white-space: nowrap;
            text-align: center;
        }

        .step-indicator.active .step-label,
        .step-indicator.completed .step-label {
            color: var(--primary-color);
            font-weight: 600;
        }

        .form-content {
            padding: 3rem;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .step-description {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .form-control {
            border: 2px solid #E9ECEF;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(5, 44, 101, 0.25);
        }

        .form-select {
            border: 2px solid #E9ECEF;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(5, 44, 101, 0.25);
        }

        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .form-check-input:focus {
            box-shadow: 0 0 0 0.2rem rgba(5, 44, 101, 0.25);
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #E9ECEF;
        }

        .btn-nav {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            color: var(--white);
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .btn-nav:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-nav:disabled {
            background: #E9ECEF;
            color: var(--text-light);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .step-summary {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #E9ECEF;
        }

        .summary-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .summary-label {
            font-weight: 600;
            color: var(--text-dark);
        }

        .summary-value {
            color: var(--text-light);
        }

        .file-upload {
            border: 2px dashed #E9ECEF;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-upload:hover {
            border-color: var(--primary-color);
            background: rgba(5, 44, 101, 0.05);
        }

        .file-upload i {
            font-size: 2rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .file-input {
            display: none;
        }

        .selected-files {
            margin-top: 1rem;
        }

        .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--white);
            border: 1px solid #E9ECEF;
            border-radius: 8px;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .file-item i {
            color: var(--primary-color);
            margin-right: 0.5rem;
        }

        .remove-file {
            color: var(--accent-color);
            cursor: pointer;
            padding: 0.25rem;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @media (max-width: 768px) {
            .form-container {
                margin: 60px 10px 20px;
            }

            .form-content {
                padding: 2rem 1.5rem;
            }

            .progress-steps {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .step-indicator {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }

            .step-label {
                font-size: 0.7rem;
                top: 45px;
            }

            .form-navigation {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-nav {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .form-header {
                padding: 1.5rem;
            }

            .form-title {
                font-size: 1.5rem;
            }

            .form-content {
                padding: 1.5rem 1rem;
            }

            .step-title {
                font-size: 1.25rem;
            }
        }
