 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f6f8fb 0%, #c4cbe0 100%);
            min-height: 100vh;
            color: #333;
        }
        
        .register-container {
            max-width: 900px;
            margin: 30px auto;
            padding: 20px;
        }
        
        .page-title {
            text-align: center;
            color: #084475;
            margin-bottom: 25px;
            font-size: 28px;
            font-weight: 600;
        }
        
        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }
        
        .progress-bar::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: #ddd;
            z-index: 1;
        }
        
        .progress-step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ddd;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #fff;
            position: relative;
            z-index: 2;
            font-size: 14px;
        }
        
        .progress-step.active {
            background-color: #084475;
        }
        
        .progress-step.completed {
            background-color: #28a745;
        }
        
        .progress-step span {
            position: absolute;
            top: 45px;
            font-size: 12px;
            text-align: center;
            width: 100px;
            left: 50%;
            transform: translateX(-50%);
            color: #084475;
            font-weight: 500;
        }
        
        .registration-form {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .step-section {
            margin-bottom: 30px;
        }
        
        .step-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #084475;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 10px;
        }
        
        .step-title {
            font-size: 18px;
            font-weight: 600;
            color: #084475;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
        }
        
        .form-group {
            margin-bottom: 10px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .form-group input, 
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus, 
        .form-group select:focus {
            outline: none;
            border-color: #084475;
            box-shadow: 0 0 0 2px rgba(8, 68, 117, 0.2);
        }
        
        .file-upload-info {
            margin-top: 5px;
            font-size: 0.85em;
            color: #666;
        }
        
        /* Side by side layout for password requirements and family info */
        .info-side-by-side {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin: 5px 0;
        }
        
        .password-requirements {
            font-size: 0.85em;
            color: #666;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #084475;
            height: fit-content;
        }
        
        .password-requirements strong {
            display: block;
            margin-bottom: 12px;
            color: #084475;
            font-size: 0.95em;
        }
        
        .password-requirements ul {
            margin: 0;
            padding-left: 18px;
        }
        
        .password-requirements li {
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .password-strength {
            margin-top: 15px;
            height: 6px;
            background-color: #e9ecef;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .strength-meter {
            height: 100%;
            width: 0%;
            background-color: #dc3545;
            transition: width 0.3s, background-color 0.3s;
        }
        
        .family-info {
            padding: 20px;
            background-color: #e7f3ff;
            border-radius: 8px;
            border-left: 4px solid #084475;
            height: fit-content;
        }
        
        .family-info h3 {
            color: #084475;
            margin-bottom: 12px;
            font-size: 1.1em;
        }
        
        .family-info p {
            font-size: 0.85em;
            line-height: 1.5;
            color: #333;
            margin: 0;
        }
        
        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .btn-back, .btn-next {
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
             text-decoration: none;
        }
        
        .btn-back {
            background-color: #f8f9fa;
            color: #333;
            border: 1px solid #ddd;
        }
        
        .btn-back:hover {
            background-color: #e9ecef;
        }
        
        .btn-next {
            background-color: #084475;
            color: white;
        }
        
        .btn-next:hover {
            background-color: #063761;
        }
        
        .error-box {
            background-color: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
        }
        
        .error-box ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .confirm-message {
            font-size: 0.85em;
            margin-top: 8px;
            padding: 5px;
            border-radius: 4px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .register-container {
                padding: 15px;
            }
            
            .registration-form {
                padding: 20px;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .info-side-by-side {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .form-actions {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-back, .btn-next {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .password-requirements,
            .family-info {
                padding: 15px;
            }
            
            .password-requirements ul {
                padding-left: 15px;
            }
        }