 .password-container {
            position: relative;
            width: 100%;
        }
        .toggle-password {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: black; /* Changed color to match theme */
        }
        .toggle-password:hover {
            color:  #3498db; /* Darker hover color */
        }

        /* Password Strength Meter */
        .password-strength-meter {
            display: flex;
            gap: 0px;
            width: 100%;
            height: 6px;
            border-radius: 3px;
            overflow: hidden;
        }

        .strength-bar {
            flex: 1;
            height: 100%;
            background-color: #e0e0e0;
            transition: background-color 0.3s ease;
        }

        .strength-bar.active {
            transition: background-color 0.3s ease;
        }

         /* Hide number input spinners */
        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        
        input[type="number"] {
            -moz-appearance: textfield;
            appearance: textfield;
        }

        /* Multi-step Form Styles */
        .landscape-form {
            /* Glassmorphism Effect - Same as login */
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(50px);
            -webkit-backdrop-filter: blur(50px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            max-width: 1200px !important;
            width: 95% !important;
            padding: 0 !important;
            overflow: hidden;
            position: relative;
        }

        /* Glass shine effect */
        .landscape-form::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            z-index: 0;
        }

        /* Registration Wrapper - Contains Sidebar and Content */
        .registration-wrapper {
            display: flex;
            min-height: 600px;
            background: transparent;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        /* Sidebar Styles */
        .registration-sidebar {
            background: #8c6a64 ;
            width: 280px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            color: #333;
            flex-shrink: 0;
            border-right: 1px solid #e0e0e0;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        .registration-sidebar .logo {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e0e0e0;
            position: relative;
            z-index: 2;
        }
           /*========================================*/
          /*css of logo image in registration sidebar*/
          /*========================================*/

        .registration-sidebar .logo img {
            height: 60px;
            width: 100%;
            max-width: 200px;
            margin-bottom: 10px;
            display: block;
            margin-left: auto;
            margin-right: auto;
            object-fit: contain;
        }

        .registration-sidebar .logo p {
            color: black;
            font-size: 14px;
        }

        /* Main Content Area */
        .registration-content {
            flex: 1;
            padding: 30px 40px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            overflow-y: auto;
            overflow-x: visible;
            max-height: 85vh;
            position: relative;
            z-index: 2;
        }

        .registration-content .error-message,
        .registration-content .success-message {
            margin-bottom: 20px;
        }

        .registration-content .register-link {
            text-align: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .registration-content .register-link p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .registration-content .register-link a {
            color: #a0c4ff;
            text-decoration: none;
            font-weight: 600;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .registration-content .register-link a:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(160, 196, 255, 0.5);
        }

        /* Step Indicator */
        .step-indicator {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 20px;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .step:hover {
            background: #3498db;
        }

        .step::after {
            display: none;
        }

        .step.active {
            background: rgba(255, 255, 255, 0.15);
            border-left: 4px solid #3498db;
        }

        .step.completed {
            opacity: 0.7;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
        }

        .step.active .step-number {
            background: #3498db;
            border-color: #3498db;
            box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
        }

        .step.completed .step-number {
            background: #28a745;
            border-color: #28a745;
            font-size: 0;
        }

        .step.completed .step-number::after {
            content: '✓';
            position: absolute;
            font-size: 20px;
            color: white;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .step-title {
            font-size: 15px;
            text-align: left;
            color: black;
            font-weight: 500;
            flex: 1;
        }

        .step.active .step-title {
            color: black;
            font-weight: 600;
        }

        /* Form Steps */
        .form-step {
            display: none;
            animation: fadeIn 0.3s ease-in-out;
        }

        .form-step.active {
            display: block;
        }

        .form-step h3 {
            text-align: center;
            margin-bottom: 25px;
            margin-top: 0;
            color: black;
            font-size: 24px;
            font-weight: 600;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(0, 0, 0, 0.1);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .step-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 15px;
            overflow: visible;
        }

        /* Step 1 and Step 2 have more fields, so use a 3-column layout on larger screens */
        #step1 .step-grid,
        #step2 .step-grid {
            grid-template-columns: 1fr 1fr 1fr;
        }

        /* Navigation Buttons */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 2px solid #e9ecef;
        }

        .btn-secondary {
            background: linear-gradient(135deg, #6c757d, #5a6268);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #5a6268, #495057);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .btn-primary {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #2980b9, #1f5f8b);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ===== RESPONSIVE MEDIA QUERIES ===== */
        
        /* Tablet Devices */
        @media (min-width: 769px) and (max-width: 1024px) {
            .registration-sidebar {
                width: 240px;
                padding: 25px 15px;
            }

            .registration-content {
                padding: 25px 30px;
            }

            #step1 .step-grid,
            #step2 .step-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        /* Mobile Devices */
        @media (max-width: 768px) {
            .registration-wrapper {
                flex-direction: column;
            }

            .registration-sidebar {
                width: 100%;
                padding: 20px 15px;
                min-height: auto;
            }

            .registration-sidebar .logo {
                margin-bottom: 20px;
                padding-bottom: 15px;
            }
            
            .registration-sidebar .logo img {
                height: 70px;
                width: 90%;
                max-width: 220px;
                object-fit: contain;
            }
            
            .registration-sidebar .logo p {
                font-size: 13px;
                margin: 8px 0 0 0;
            }

            .step-indicator {
                flex-direction: row;
                justify-content: space-between;
                gap: 8px;
                margin-top: 10px;
                padding: 0 5px;
            }

            .step {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 12px 8px;
                flex: 1;
                border-radius: 12px;
                min-height: 90px;
            }
            
            .step:hover {
                background: rgba(52, 152, 219, 0.2);
            }

            .step-title {
                font-size: 10px;
                text-align: center;
                margin-top: 6px;
                line-height: 1.2;
                font-weight: 600;
            }

            .step-number {
                width: 38px;
                height: 38px;
                font-size: 16px;
                margin-bottom: 4px;
            }
            
            .step.completed .step-number::after {
                font-size: 18px;
            }

            .registration-content {
                padding: 20px;
                max-height: none;
            }

            .landscape-form {
                max-width: 500px !important;
            }
            
            /* Force all form grids to single column on mobile */
            .step-grid {
                grid-template-columns: 1fr !important;
                gap: 15px;
            }
            
            #step1 .step-grid,
            #step2 .step-grid,
            #step3 .step-grid {
                grid-template-columns: 1fr !important;
            }
            
            /* Ensure all form groups take full width */
            .form-group {
                grid-column: span 1 !important;
            }

            .form-navigation {
                flex-direction: column;
                gap: 15px;
            }

            /* More specific selectors to override style.css */
            .form-navigation .btn-primary,
            .form-navigation .btn-secondary,
            .btn-primary,
            .btn-secondary {
                width: 100% !important;
                justify-content: center !important;
                display: flex !important;
                font-size: 14px !important;
                padding: 12px 24px !important;
                margin: 0 !important;
            }
            
            /* Ensure hidden buttons stay hidden */
            .form-navigation .btn-primary[style*="display: none"],
            .form-navigation .btn-secondary[style*="display: none"],
            .btn-primary[style*="display: none"],
            .btn-secondary[style*="display: none"] {
                display: none !important;
            }
            
            /* Better input sizing for mobile */
            .landscape-form input[type="text"],
            .landscape-form input[type="email"],
            .landscape-form input[type="tel"],
            .landscape-form input[type="date"],
            .landscape-form input[type="number"],
            .landscape-form input[type="password"],
            .landscape-form select,
            .landscape-form textarea {
                font-size: 16px !important;
                padding: 0.85rem !important;
            }
            
            .landscape-form label {
                font-size: 14px;
            }
            
            .form-group {
                margin-bottom: 15px !important;
            }
        }
        
        /* Small Mobile Devices */
        @media (max-width: 600px) {
            .duplicate-popup-content {
                width: 95%;
                margin: 1rem;
            }

            .duplicate-popup-content p {
                padding: 1.5rem;
            }

            .duplicate-popup-content h3 {
                padding: 1rem;
                font-size: 1.2rem;
            }
            
            .registration-sidebar {
                padding: 15px 10px;
            }
            
            .registration-sidebar .logo img {
                height: 65px;
                width: 85%;
                max-width: 200px;
                object-fit: contain;
            }
            
            .registration-sidebar .logo p {
                font-size: 12px;
            }
            
            .registration-content {
                padding: 15px;
            }
            
            .step-indicator {
                gap: 6px;
                padding: 0 2px;
            }
            
            .step {
                padding: 10px 6px;
                min-height: 85px;
            }
            
            .step-number {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
            
            .step.completed .step-number::after {
                font-size: 16px;
            }
            
            .step-title {
                font-size: 9px;
                margin-top: 5px;
            }
        }
        
        /* ===== RESPONSIVE ENHANCEMENTS FOR STEP 2 ===== */
        
        /* Medium Tablets and Small Desktops */
        @media (max-width: 1024px) {
            .step-grid {
                gap: 10px;
            }
            
            .form-group label {
                font-size: 13px;
            }
            
            .landscape-form input,
            .landscape-form select,
            .landscape-form button {
                font-size: 14px;
            }
        }
        
        /* Tablets Portrait Mode */
        @media (max-width: 768px) {
            /* Form step headers */
            .form-step h3 {
                font-size: 1.3rem;
                padding-bottom: 12px;
            }
            
            /* School name other input - full width on mobile */
            #school_name_other_group {
                grid-column: span 1 !important;
            }
            
            /* Select Preferred Jobs button - better mobile styling */
            .btn-select-jobs {
                padding: 14px 16px;
                font-size: 15px;
                min-height: 50px;
            }
            
            .btn-select-jobs i {
                font-size: 18px;
            }
            
            #selected-jobs-count {
                font-size: 12px;
            }
        }
        
        /* Mobile Devices */
        @media (max-width: 480px) {
            /* Sidebar adjustments */
            .registration-sidebar {
                padding: 15px 12px;
            }
            
            .registration-sidebar .logo img {
                height: 60px;
                width: 80%;
                max-width: 180px;
                object-fit: contain;
            }
            
            .step {
                padding: 10px 5px;
            }
            
            .step-number {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            
            .step-title {
                font-size: 9px;
            }
            
            /* Form headers */
            .form-step h3 {
                font-size: 1.15rem;
                padding-bottom: 10px;
                margin-bottom: 15px;
            }
            
            /* Form labels */
            .landscape-form label {
                font-size: 13px !important;
                margin-bottom: 6px;
            }
            
            /* Input fields - better touch targets */
            .landscape-form input[type="text"],
            .landscape-form input[type="email"],
            .landscape-form input[type="tel"],
            .landscape-form input[type="date"],
            .landscape-form input[type="number"],
            .landscape-form input[type="password"],
            .landscape-form select {
                font-size: 16px !important;
                padding: 12px !important;
                min-height: 48px !important;
            }
            
            /* Select dropdowns - better visibility */
            .landscape-form select {
                padding-right: 35px !important;
                background-position: right 10px center;
            }
            
            /* Small text and helper text */
            small {
                font-size: 11px !important;
            }
            
            /* Button improvements */
            .btn-select-jobs {
                padding: 16px 14px;
                font-size: 14px;
                min-height: 54px;
                flex-direction: column;
                gap: 4px;
            }
            
            .btn-select-jobs i {
                font-size: 20px;
            }
            
            #selected-jobs-count {
                font-size: 11px;
                display: block;
                width: 100%;
                text-align: center;
            }
            
            /* Button group - stack vertically */
            .button-group {
                flex-direction: column;
                gap: 10px;
                margin-top: 15px;
            }
            
            .button-group .btn-primary,
            .button-group .btn-secondary {
                width: 100% !important;
                justify-content: center !important;
                padding: 14px 20px !important;
                font-size: 15px !important;
            }
            
            /* Jobs Popup - Mobile optimizations */
            .jobs-popup-content {
                width: 95%;
                max-width: 95vw;
                max-height: 90vh;
                border-radius: 12px;
            }
            
            .jobs-popup-header {
                padding: 16px 18px;
            }
            
            .jobs-popup-header h3 {
                font-size: 16px;
            }
            
            .jobs-popup-body {
                padding: 18px;
            }
            
            .jobs-grid {
                grid-template-columns: 1fr !important;
                gap: 10px;
            }
            
            .job-checkbox-item {
                padding: 14px;
            }
            
            .job-checkbox-label {
                font-size: 14px;
                line-height: 1.4;
            }
            
            .job-checkbox-input {
                width: 20px;
                height: 20px;
                margin-right: 12px;
            }
            
            #custom-job-input {
                font-size: 16px !important;
                padding: 12px !important;
            }
            
            .jobs-popup-footer {
                padding: 14px 18px;
                flex-direction: column-reverse;
            }
            
            .btn-popup-cancel,
            .btn-popup-confirm {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 15px;
            }
        }
        
        /* Extra Small Devices */
        @media (max-width: 375px) {
            .registration-sidebar {
                padding: 12px 8px;
            }
            
            .registration-sidebar .logo {
                margin-bottom: 15px;
                padding-bottom: 12px;
            }
            
            .registration-sidebar .logo img {
                height: 55px;
                width: 75%;
                max-width: 160px;
                object-fit: contain;
            }
            
            .registration-sidebar .logo p {
                font-size: 11px;
            }
            
            .step-indicator {
                gap: 4px;
                padding: 0;
            }
            
            .step {
                padding: 8px 4px;
                min-height: 80px;
                border-radius: 10px;
            }
            
            .step-number {
                width: 30px;
                height: 30px;
                font-size: 14px;
                border-width: 1.5px;
            }
            
            .step.completed .step-number::after {
                font-size: 15px;
            }
            
            .step-title {
                font-size: 8px;
                margin-top: 4px;
                font-weight: 700;
            }
            
            .registration-content {
                padding: 12px;
            }
            
            .form-step h3 {
                font-size: 1.05rem;
            }
            
            .landscape-form label {
                font-size: 12px !important;
            }
            
            .landscape-form input,
            .landscape-form select {
                font-size: 15px !important;
                padding: 10px !important;
            }
            
            .btn-select-jobs {
                font-size: 13px;
                padding: 14px 12px;
            }
            
            .btn-select-jobs i {
                font-size: 18px;
            }
            
            .jobs-popup-header h3 {
                font-size: 15px;
            }
            
            .job-checkbox-label {
                font-size: 13px;
            }
        }
        
        /* Landscape Orientation on Mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .registration-sidebar {
                display: none;
            }
            
            .registration-content {
                max-height: none;
                padding: 15px;
            }
            
            /* Keep single column for Step 2 even in landscape */
            .step-grid {
                grid-template-columns: 1fr !important;
                gap: 10px;
            }
            
            #step1 .step-grid,
            #step2 .step-grid,
            #step3 .step-grid {
                grid-template-columns: 1fr !important;
            }
            
            .form-group {
                margin-bottom: 10px !important;
                grid-column: span 1 !important;
            }
            
            .landscape-form input,
            .landscape-form select {
                padding: 8px !important;
                min-height: 40px !important;
            }
            
            .button-group {
                flex-direction: row;
                gap: 10px;
            }
            
            .button-group .btn-primary,
            .button-group .btn-secondary {
                flex: 1;
                padding: 10px 16px !important;
                font-size: 14px !important;
            }
        }
        
        /* Very Small Landscape Phones */
        @media (max-width: 480px) and (orientation: landscape) {
            .step-grid {
                grid-template-columns: 1fr !important;
            }
            
            #step1 .step-grid,
            #step2 .step-grid,
            #step3 .step-grid {
                grid-template-columns: 1fr !important;
            }
            
            .form-step h3 {
                font-size: 1rem;
                margin-bottom: 10px;
                padding-bottom: 8px;
            }
        }

        /* Ensure all input fields have consistent height */
        .landscape-form input[type="text"],
        .landscape-form input[type="email"],
        .landscape-form input[type="tel"],
        .landscape-form input[type="date"],
        .landscape-form input[type="number"],
        .landscape-form input[type="password"],
        .landscape-form select {
            height: auto;
            min-height: 38px;
            padding: 0.75rem;
            box-sizing: border-box;
            line-height: normal;
        }

        /* Fix dropdown text cutoff */
        .landscape-form select {
            width: 100%;
            padding: 0.75rem 2.5rem 0.75rem 0.75rem;
            appearance: auto;
            -webkit-appearance: auto;
            -moz-appearance: auto;
        }

        /* Override form inputs for better visibility in registration */
        .landscape-form input,
        .landscape-form select,
        .landscape-form textarea {
            background: #f0f0f0 !important;
            color: #333 !important;
            border: 1px solid #d0d0d0 !important;
        }

        .landscape-form input::placeholder {
            color: rgba(0, 0, 0, 0.5) !important;
        }

        .landscape-form input:focus,
        .landscape-form select:focus,
        .landscape-form textarea:focus {
            background: rgba(255, 255, 255, 0.95) !important;
            border-color: rgba(52, 152, 219, 0.8) !important;
        }

        .landscape-form label {
            color: #000 !important;
            font-weight: 600;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
        }

        .landscape-form select option {
            color: black;
            background: white;
            padding: 8px;
            white-space: normal;
            overflow: visible;
        }
 
        /* Readonly field styling */
        .landscape-form input[readonly] {
            background-color: #f0f0f0 !important;
            color: #666;
            cursor: not-allowed;
            border-color: #d0d0d0;
        }

        .landscape-form textarea {
            min-height: 70px;
            resize: vertical;
        }

        /* Form group spacing for steps */
        .form-step .form-group {
            margin-bottom: 12px;
            overflow: visible;
            position: relative;
        }

        /* Ensure step grid doesn't clip dropdowns */
        .step-grid {
            overflow: visible;
        }

        /* Ensure form steps don't clip dropdowns */
        .form-step {
            overflow: visible;
        }

 /* Duplicate Person Popup Styles */
.duplicate-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.duplicate-popup-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
    border: 2px solid #e74c3c;
}

.duplicate-popup-content h3 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1.5rem;
    border-radius: 13px 13px 0 0;
    text-align: center;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.duplicate-popup-content h3 i {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.duplicate-popup-content p {
    padding: 2rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.duplicate-popup-content strong {
    color: #2c3e50;
    font-weight: 700;
}

.duplicate-popup-content button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.duplicate-popup-content button:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.password-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.password-info strong {
    color: #28a745 !important;
    font-size: 1.1rem;
}

/* Student Checkbox Styling */
input[type="radio"][name="is_student"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3498db;
}

input[type="radio"][name="is_student"] + span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

input[type="radio"][name="is_student"]:checked + span {
    color: #3498db;
    font-weight: 600;
}

label:has(input[type="radio"][name="is_student"]) {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

label:has(input[type="radio"][name="is_student"]:checked) {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

/* Radio Button Card Styling for Employer Registration */
.radio-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 10px 0;
}

.radio-card-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.radio-card-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.radio-card-label:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.radio-card-label:hover::before {
    opacity: 1;
}

.radio-card-label input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
    position: relative;
    z-index: 1;
}

.radio-card-label span {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.radio-card-label:has(input[type="radio"]:checked) {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.radio-card-label:has(input[type="radio"]:checked) span {
    color: white;
    font-weight: 600;
}

.radio-card-label:has(input[type="radio"]:checked)::before {
    opacity: 0;
}

/* Employer Type Section Styling */
.employer-type-section {
    margin-bottom: 20px;
}

.employer-type-header {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.employer-type-header.public {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.employer-type-header.private {
    color: #764ba2;
    background: rgba(118, 75, 162, 0.1);
}

.employer-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    padding-left: 12px;
}

/* Form Section Headings */
.form-section-label {
    display: block;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 15px;
    color: #2c3e50;
    letter-spacing: 0.3px;
}

/* Total Work Force specific styling */
input[type="radio"][name="total_work_force"],
input[type="radio"][name="employer_type"],
input[type="radio"][name="main_office_branch"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

/* Form Section Box Styling - For grouped sections */
.form-section-box {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #e8ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8ecef;
}

.section-label i {
    font-size: 20px;
    color: #667eea;
}

/* Horizontal Radio Options with Visual Cards */
.radio-options-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.radio-option-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-height: 80px;
}

.radio-option-box:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.radio-option-box input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option-box:has(input[type="radio"]:checked) {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.radio-option-box:has(input[type="radio"]:checked) .radio-text {
    color: white;
}

.radio-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    color: #4b5563;
    transition: color 0.3s ease;
}

.radio-text strong {
    font-size: 15px;
    font-weight: 700;
}

.radio-text small {
    font-size: 12px;
    opacity: 0.85;
}

/* Employer Category Sections */
.employer-category {
    margin-bottom: 18px;
}

/* Primary Employer Choice (Public/Private) */
.employer-primary-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.employer-primary-choice .radio-option-box {
    min-height: 120px;
    padding: 24px 16px;
}

.employer-primary-choice .radio-text {
    gap: 8px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.category-header.public {
    background: linear-gradient(135deg, #667eea 0%, #5568d3 100%);
    color: white;
}

.category-header.private {
    background: linear-gradient(135deg, #764ba2 0%, #63408a 100%);
    color: white;
}

.category-header i {
    font-size: 18px;
}

/* Radio Grid for Employer Types */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.radio-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-checkbox-item:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateX(2px);
}

.radio-checkbox-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
}

.radio-checkbox-item:has(input[type="radio"]:checked) {
    border-color: #667eea;
    background: #f0f4ff;
    font-weight: 600;
}

.radio-checkbox-item span {
    font-size: 14px;
    color: #374151;
}