  .auth-page .tab-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .auth-page .tab-button {
            padding: 10px 30px;
            margin: 0 10px;
            background: #f8f9fa;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .auth-page .tab-button.active,
        .auth-page .tab-button:hover {
            background: #f35525;
            color: #fff;
        }

        .auth-page .tab-content {
            display: none;
        }

        .auth-page .tab-content.active {
            display: block;
        }

        .auth-page .form-group {
            margin-bottom: 20px;
        }

        .auth-page .form-group label {
            font-weight: 500;
            margin-bottom: 5px;
            display: block;
        }

        .auth-page .form-group input,
        .auth-page .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }

        .auth-page .orange-button {
            width: 100%;
            text-align: center;
        }

        .auth-page .error-message {
            color: #dc3545;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        /* Enhanced button styling */
        .orange-button.enhanced {
            width: 100%;
            padding: 12px 20px;
            background: linear-gradient(90deg, #f35525, #ff6f3c);
            border: none;
            border-radius: 5px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(243, 85, 37, 0.4);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .orange-button.enhanced:hover {
            background: linear-gradient(90deg, #ff6f3c, #f35525);
            box-shadow: 0 6px 20px rgba(243, 85, 37, 0.6);
            transform: translateY(-2px);
        }

        .orange-button.enhanced::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .orange-button.enhanced:active::before {
            width: 300px;
            height: 300px;
            transition: width 0.6s ease, height 0.6s ease;
        }