        /* ===== SIGNUP PAGE SPECIFIC STYLES ===== */
        :root {
            --primary-dark: #0f0f0f;
            --primary-light: #ffffff;
            --accent-red: #ff3333;
            --gray-light: #f5f7fa;
            --gray-dark: #5f6368;
        }

        .auth-page {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                        url('../images/BG-2.jpg') center/cover fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            padding-top: 120px;
        }

        .auth-container {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .auth-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .auth-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .auth-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: block;
            object-fit: cover;
            border: 3px solid var(--primary-dark);
        }

        .auth-header h1 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .auth-header p {
            color: var(--gray-dark);
            font-size: 14px;
            margin-bottom: 5px;
        }

        .auth-header span {
            color: var(--accent-red);
            font-weight: 600;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 14px;
        }

        .form-group label .required {
            color: var(--accent-red);
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-dark);
            font-size: 16px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px 12px 45px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-dark);
            box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.1);
        }

        .form-control.error {
            border-color: var(--accent-red);
        }

        .password-strength {
            margin-top: 5px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .strength-meter {
            flex: 1;
            height: 4px;
            background: #e0e0e0;
            border-radius: 2px;
            overflow: hidden;
        }

        .strength-fill {
            height: 100%;
            width: 0%;
            background: var(--accent-red);
            transition: width 0.3s ease, background 0.3s ease;
        }

        .strength-fill.weak { width: 33%; background: #ff4757; }
        .strength-fill.medium { width: 66%; background: #ffa502; }
        .strength-fill.strong { width: 100%; background: #2ed573; }

        .terms-group {
            margin: 25px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
        }

        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
        }

        .terms-checkbox input {
            margin-top: 3px;
            cursor: pointer;
        }

        .terms-checkbox label {
            font-size: 13px;
            color: var(--gray-dark);
            cursor: pointer;
            line-height: 1.5;
        }

        .terms-checkbox a {
            color: var(--accent-red);
            text-decoration: none;
            font-weight: 500;
        }

        .terms-checkbox a:hover {
            text-decoration: underline;
        }

        .auth-btn {
            width: 100%;
            padding: 14px;
            background: var(--primary-dark);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .auth-btn:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .auth-btn:active {
            transform: translateY(0);
        }

        .auth-divider {
            text-align: center;
            margin: 25px 0;
            position: relative;
            color: var(--gray-dark);
            font-size: 13px;
        }

        .auth-divider::before,
        .auth-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 45%;
            height: 1px;
            background: #e0e0e0;
        }

        .auth-divider::before {
            left: 0;
        }

        .auth-divider::after {
            right: 0;
        }

        .social-signup {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-btn {
            flex: 1;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            background: white;
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .social-btn.facebook {
            border-color: #1877f2;
            color: #1877f2;
        }

        .social-btn.google {
            border-color: #db4437;
            color: #db4437;
        }

        .auth-footer {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            font-size: 14px;
            color: var(--gray-dark);
        }

        .auth-footer a {
            color: var(--accent-red);
            text-decoration: none;
            font-weight: 600;
            margin-left: 5px;
            transition: color 0.3s ease;
        }

        .auth-footer a:hover {
            color: #ff6666;
            text-decoration: underline;
        }

        .error-message {
            background: #ffeaea;
            color: var(--accent-red);
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-left: 4px solid var(--accent-red);
        }

        .success-message {
            background: #e8f7ef;
            color: #2ecc71;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-left: 4px solid #2ecc71;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .auth-page {
                padding: 20px;
                background-attachment: scroll;
            }

            .auth-card {
                padding: 30px 25px;
            }

            .auth-header h1 {
                font-size: 24px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .social-signup {
                flex-direction: column;
            }

            .social-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .auth-card {
                padding: 25px 20px;
            }

            .auth-header h1 {
                font-size: 22px;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .auth-card {
            animation: fadeIn 0.6s ease-out;
        }

        /* Toggle Password Visibility - INSIDE the input box */
        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--gray-dark);
            cursor: pointer;
            font-size: 15px;
            padding: 6px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hover effect so it feels clickable */
        .toggle-password:hover {
            background: rgba(0,0,0,0.05);
        }

        .input-with-icon input[type="password"],
        .input-with-icon input[type="text"] {
            padding-right: 45px; /* space for eye icon */
        }

